Artix Linux Forum

Artix Linux => Applications & Software => Topic started by: Thats_me on 24 July 2022, 11:12:30

Title: Desktop-App Breitbandmessung
Post by: Thats_me on 24 July 2022, 11:12:30
Hello,

for Price reduktion ist is necessary to use this App.
https://www.breitbandmessung.de/desktop-app

I found this https://aur.archlinux.org/packages/breitbandmessung
But it don't work.

Is it possible an someone able and kind enough to do that for Artix?

I think it is important to use the possibility to reduce the price, when Provider can not supply the speed.
Especially because a big monopoly Provider promise 1000 MB download although they know that this mostely unrealistic.

https://metager.de/meta/meta.ger3?eingabe=1000+MB+vodafone+werden+nicht+erreicht&focus=web&s=&f=&ff=&ft=&m=gg

Thanks TM




Title: Re: Desktop-App Breitbandmessung
Post by: cat herders of linux on 24 July 2022, 11:22:02
speedtest.net   ????
Title: Re: Desktop-App Breitbandmessung
Post by: cat herders of linux on 24 July 2022, 11:44:12
Code: [Select]

# Maintainer: Posi <[email protected]>

# Contributorr: Linus Dierheimer <[email protected]>

pkgname=breitbandmessung
pkgver=3.0.0
pkgrel=1
pkgdesc="Die Breitbandmessung Desktop-App erlaubt es Ihnen, die tatsächliche Datenübertragungsrate Ihres Breitbandanschlusses zu messen. Weitere Informationen erhalten Sie unter https://breitbandmessung.de"
arch=('x86_64')
license=('unknown')
url="https://breitbandmessung.de/"
options=('!strip')
source=("breitbandmessung-${pkgver}.deb::https://download.breitbandmessung.de/bbm/Breitbandmessung-linux.deb")
sha256sums=("05df727061449c3fbee47321a22b3477ed0487613bbb305318ea64f3a46460e9")
depends=("net-tools")
makedepends=("asar")

build() {
    _builddir="${srcdir}/${pkgver}-${pkgrel}"
    mkdir -p "${_builddir}"

    tar --extract --overwrite --file=data.tar.xz --directory="${_builddir}"

    cd "${_builddir}/opt/Breitbandmessung/resources/"

    _unpatched="}return p.current={}"
    _patched="}p.allowed=!0;return p.current={}"

    asar e app.asar unpacked/
    sed -i "s/${_unpatched}/${_patched}/g" unpacked/build/static/js/*.js
    asar p unpacked/ app.asar
    rm -rf unpacked/
}

package() {

    cp -a "${srcdir}/${pkgver}-${pkgrel}/." "${pkgdir}"

    #Create /usr/bin symlink
    mkdir -p "${pkgdir}/usr/bin/"
    ln -sf "/opt/Breitbandmessung/breitbandmessung" "${pkgdir}/usr/bin/breitbandmessung"

    chmod -R go-w "${pkgdir}/usr"
}

the sha256sum i got from d/l the deb package was not what is listed so the package won't build.  the sum i got from checking the download file is
Code: [Select]
 b1f0664f845bccb62612c921ac72d074fb2bd9ea02d14fa7463480e55a33a8bc 
  not the
Code: [Select]
 05df727061449c3fbee47321a22b3477ed0487613bbb305318ea64f3a46460e9 
listed in the package build above

so you have to decide... do you feel lucky?  swap out the sha256sum for the one i found to be true and try again to build it?
Title: Re: Desktop-App Breitbandmessung
Post by: cat herders of linux on 24 July 2022, 11:55:42
and after all that it turns out the package isn't compatible with arch?
You could install ubuntu in a virtualbox and run it easily enough i would suspect..  given that it is a internet speed tester i think, it should perform as well in a virtualbox as in a live os.  also you could get an ubuntu live usb and install from within the live usb and run it from that when you want to do a check if you don't want to use a virtualbox.


as it is it needs a developer to make patches so it runs with arch.
Title: Re: Desktop-App Breitbandmessung
Post by: Thats_me on 24 July 2022, 15:16:56
I just ask, because i would prefere, to run it in Artix.
And I thought for Germans it is not bad to have this Software in Artix.


This ist not accepts in german law. It have to be the special App.

You could install ubuntu in a virtualbox and run it easily enough i would suspect..  given that it is a internet speed tester i think, it should perform as well in a virtualbox as in a live os.  also you could get an ubuntu live usb and install from within the live usb and run it from that when you want to do a check if you don't want to use a virtualbox.


Is it sure, that the Internetconnection in aVbox is the same  like in real Operating System?

I'ts also possible for me to boot into MX Linux. But I would prefere, to do it in Artix, so that I don't have to boot or use my emergency OS. I only use Artix.



Thank's @all


Title: Re: Desktop-App Breitbandmessung
Post by: cat herders of linux on 24 July 2022, 17:43:33
i built it using the corrected hash and this was what i got in the photo.  as i am a stupid american and don't speak german i have no idea what it says but clicking on it anywhere does nothing...  

the devs here are likely not going to maintain an upstream package.  the project at the level of the aur needs someone to work on it.
Title: Re: Desktop-App Breitbandmessung
Post by: cat herders of linux on 24 July 2022, 17:47:44
Is it sure, that the Internetconnection in aVbox is the same  like in real Operating System?
yes.  the internet connection speed of a virtual box is the same as the host system.... unless of course your host system is playing butloads of youtube and netflix videos.

this is easy to do.  crank up ubuntu or linux mint in a vertualbox and install the debian versian for ubuntu.  easy peasy.  15 minutes of your time to set it up.  mere moments to run your speed test with the official approved app.

i'll even spend my time to try it out to be sure it works because i'm just that way.    one moment please.
Title: Re: Desktop-App Breitbandmessung
Post by: Thats_me on 24 July 2022, 18:22:23
i'll even spend my time to try it out to be sure it works because i'm just that way.    one moment please.

That's very kind!
Title: Re: Desktop-App Breitbandmessung
Post by: cat herders of linux on 24 July 2022, 18:43:43
my vbox had a snafu but it's installing linux mint now.
Title: Re: Desktop-App Breitbandmessung
Post by: cat herders of linux on 24 July 2022, 18:48:04
seems to work
Title: Re: Desktop-App Breitbandmessung
Post by: Thats_me on 24 July 2022, 19:52:00
Not sure is, if the VBox really have same Speed like original Operating System.

But I can test this.
Title: Re: Desktop-App Breitbandmessung
Post by: cat herders of linux on 24 July 2022, 20:00:52
Not sure is, if the VBox really have same Speed like original Operating System.
def does here

but unless the program can display text in english i can't help more.

only thing left for you to do is install virtual box, ubuntu, and your program.  all works as intended.  Enjoy!
Title: Re: Desktop-App Breitbandmessung
Post by: gosia on 24 July 2022, 20:52:50

approximately: "Your operating system is not supported by this application"