Porteus-v3.2.2 bug reports here

Please reproduce your error on a second machine before posting, and check the error by running without saved changes or extra modules (See FAQ No. 13, "How to report a bug"). For unstable Porteus versions (alpha, beta, rc) please use the relevant thread in our "Development" section.
Bogomips
Full of knowledge
Full of knowledge
Posts: 2564
Joined: 25 Jun 2014, 15:21
Distribution: 3.2.2 Cinnamon & KDE5
Location: London

Re: Porteus-v3.2.2 bug reports here

Post#106 by Bogomips » 16 Mar 2017, 14:50

port wrote:
port wrote:I have a bug in 3.2.2 kde with kolourpaint
Another bug with kolourpaint of same nature, this time the missing library is libgphoto2.so.6 :
Is it not easier to find the unresolved dependencies thus?

Code: Select all

ldd /usr/bin/kolourpaint | grep found
:)
Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB

port
Samurai
Samurai
Posts: 137
Joined: 18 Feb 2016, 09:25
Distribution: Linux porteus 3.2.2 KDE
Location: Spain

Re: Porteus-v3.2.2 bug reports here

Post#107 by port » 16 Mar 2017, 15:34

Bogomips wrote:
port wrote:
port wrote:I have a bug in 3.2.2 kde with kolourpaint
Another bug with kolourpaint of same nature, this time the missing library is libgphoto2.so.6 :
Is it not easier to find the unresolved dependencies thus?

Code: Select all

ldd /usr/bin/kolourpaint | grep found
:)
yes, sure, I was doing exactly that:

Code: Select all

# for F in $(ldd /usr/bin/kolourpaint | cut -d\  -f 1 | tr -d '\t' | sed 's;.*/;;'|sort) ; do find / -xdev -name $F | grep -q $F || echo "$F not found"; done
libgphoto2.so.6 not found
libgphoto2_port.so.12 not found
linux-vdso.so.1 not found
so, missing dependencies are libgphoto2.so.6, libgphoto2_port.so.12 and linux_vdso.so.1 (libsane.so.1 is not a dependency now because I'm using 07-printing-x86_64-03.02.2017.xzm module from Blaze)

As a curious note aside, I don't get the same results looking in installed packages:

Code: Select all

# for F in $(ldd /usr/bin/kolourpaint | cut -d\  -f 1 | tr -d '\t' | sed 's;.*/;;'|sort) ; do grep -q $F /var/log/packages/* || echo "$F not found"; done
ld-linux-x86-64.so.2 not found
libc.so.6 not found
libdl.so.2 not found
libgphoto2.so.6 not found
libgphoto2_port.so.12 not found
libm.so.6 not found
libnsl.so.1 not found
libpthread.so.0 not found
libresolv.so.2 not found
librt.so.1 not found
linux-vdso.so.1 not found
I assume this is due to some files being part of core system rather than installed from packages

User avatar
Blaze
DEV Team
DEV Team
Posts: 3869
Joined: 28 Dec 2010, 11:31
Distribution: ⟰ Porteus current ☯ all DEs ☯
Location: ☭ Russian Federation, Lipetsk region, Dankov
Contact:

Re: Porteus-v3.2.2 bug reports here

Post#108 by Blaze » 16 Mar 2017, 15:41

In Cinnamon I have libgphoto2.so.6.0.0 :)

Code: Select all

root@blaze:~# find /usr/lib64/ -name 'libgphoto2*'
/usr/lib64/pkgconfig/libgphoto2.pc
/usr/lib64/pkgconfig/libgphoto2_port.pc
/usr/lib64/libgphoto2
/usr/lib64/libgphoto2.la
/usr/lib64/libgphoto2_port
/usr/lib64/libgphoto2_port.la
/usr/lib64/libgphoto2.so
/usr/lib64/libgphoto2.so.6
/usr/lib64/libgphoto2.so.6.0.0
/usr/lib64/libgphoto2_port.so
/usr/lib64/libgphoto2_port.so.12
/usr/lib64/libgphoto2_port.so.12.0.0
root@blaze:~#
Linux 6.6.11-porteus #1 SMP PREEMPT_DYNAMIC Sun Jan 14 12:07:37 MSK 2024 x86_64 Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz GenuineIntel GNU/Linux
MS-7A12 » [AMD/ATI] Navi 23 [Radeon RX 6600] [1002:73ff] (rev c7) » Vengeance LPX 16GB DDR4 K2 3200MHz C16

port
Samurai
Samurai
Posts: 137
Joined: 18 Feb 2016, 09:25
Distribution: Linux porteus 3.2.2 KDE
Location: Spain

Re: Porteus-v3.2.2 bug reports here

Post#109 by port » 17 Mar 2017, 04:42

Extending the search for missing dependencies I took a more exhaustive approach, just looking for missing deps of every executable file with 'k' preffix in common bin directories:

Code: Select all

./listdeps.sh "k*" '/usr/bin/ /usr/local/bin/ /bin/ /usr/X11/bin/' deps/
and here you are my list of missing dependencies:

Code: Select all

# cat deps/MISSING-DEPS.TXT
libakonadi-contact.so.4
libakonadi-kde.so.4
libgpgme++-pthread.so.2
libgpgmepp.so.6
libgphoto2.so.6
libgphoto2_port.so.12
libkabc.so.4
libkcalcore.so.4
libkldap.so.4
libkmime.so.4
libkonq.so.5
libkpimutils.so.4
libkresources.so.4
libqgpgme.so.7
linux-vdso.so.1
this may be all missing dependencies of kde programs included in 003-kde.xzm module, hope it helps

An alternative less exhaustive approach but perhaps more accurate is to look for dependencies of executable files inside 003-kde.xzm module, I'll do it tomorrow

User avatar
Blaze
DEV Team
DEV Team
Posts: 3869
Joined: 28 Dec 2010, 11:31
Distribution: ⟰ Porteus current ☯ all DEs ☯
Location: ☭ Russian Federation, Lipetsk region, Dankov
Contact:

Re: Porteus-v3.2.2 bug reports here

Post#110 by Blaze » 18 Mar 2017, 11:31

Cinnamon x86_64

1) Addition. If I boot up Porteus as guest and
Blaze wrote:If I open folder as root I can't to mount ISO files via right click of mouse (I don't see mounted ISO at the left sidebar of nemo).
Image
+ names (labels) of my partitions is missing - I see only sda1, sda2, etc, but not labels or tomes (names of tomes - Том 205 GB, Том 64 GB, etc).

If I boot up Porteus as root
Image
ISO files mounts well and I see this at the left sidebar of nemo.

I think, that's doing demon or init script (/etc/rc.d) for user that you choose via cheat code (login=guest or login=root) when Porteus boot up.

But this abbility needs for both accounts - guest and root

Probably, need to tweak /etc/rc.d/rc.S

Code: Select all

# LVM support:
if egrep -q 'TYPE="LVM|TYPE=".*_raid_member"' /mnt/live/tmp/devices 2>/dev/null; then
    echo "Initializing LVM (Logical Volume Manager):"
    vgscan --mknodes --ignorelockingfailure
    if [ $? = 0 ]; then
        vgchange -ay --ignorelockingfailure
        # Create fstab entries:
        blkid | grep /dev/mapper | sort >/mnt/live/tmp/lvm
        echo -e "\n# LVM volumes:" >>/etc/fstab
        MOPT=`egrep -o " mopt=[^ ]+" /proc/cmdline | cut -d= -f2`; [ $MOPT ] || MOPT="noatime,nodiratime,suid,dev,exec,async"
        LVM=`grep -c / /mnt/live/tmp/lvm`; x=1
        while [ $x -le $LVM ]; do
            NAME=`sed -n "$x"p /mnt/live/tmp/lvm | cut -d: -f1 | sed -e 's@/dev/mapper/@@' -e 's@-@/@g'`
            # Fallback mode:
            test -h /dev/$NAME || NAME=`sed -n "$x"p /mnt/live/tmp/lvm | cut -d: -f1 | sed s@/dev/mapper/@@`
            FS=` sed -n "$x"p /mnt/live/tmp/lvm | egrep -o " TYPE=[^ ]+" | cut -d'"' -f2`
            echo "/dev/$NAME /mnt/$NAME $FS $MOPT 0 0" >>/etc/fstab
            mkdir -p /mnt/$NAME; [ -z "`egrep -qo " noauto( |\$)" /proc/cmdline`" ] && mount /mnt/$NAME; let x=x+1
        done
    fi
fi
2) I checked

Code: Select all

mkdir /media/porteus
mount -t iso9660 -o loop /mnt/sda5/Porteus-LXDE-v3.1-i486.iso /media/porteus
vs nemo right click action /usr/libexec/gvfsd-archive file="%F"

For some reason, the methods of mounting are have different permissions (different chmod for the files)
Image

For example - I boot up Porteus as guest and I want to mount ISO of Porteus or another ISO (does not matter) as root and copy all files to my USB stick with permissions by deffault. As guest I can't to do this and I need permissions of content ISO by default.
Linux 6.6.11-porteus #1 SMP PREEMPT_DYNAMIC Sun Jan 14 12:07:37 MSK 2024 x86_64 Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz GenuineIntel GNU/Linux
MS-7A12 » [AMD/ATI] Navi 23 [Radeon RX 6600] [1002:73ff] (rev c7) » Vengeance LPX 16GB DDR4 K2 3200MHz C16

Bogomips
Full of knowledge
Full of knowledge
Posts: 2564
Joined: 25 Jun 2014, 15:21
Distribution: 3.2.2 Cinnamon & KDE5
Location: London

Re: Porteus-v3.2.2 bug reports here

Post#111 by Bogomips » 19 Mar 2017, 01:55

port wrote:and here you are my list of missing dependencies:
Happen to be running kde5 on a cinnamon base, and got

Code: Select all

guest@porteus:~$ cat > m
    libakonadi-contact.so.4
    libakonadi-kde.so.4
    libgpgme++-pthread.so.2
    libgpgmepp.so.6
    libgphoto2.so.6
    libgphoto2_port.so.12
    libkabc.so.4
    libkcalcore.so.4
    libkldap.so.4
    libkmime.so.4
    libkonq.so.5
    libkpimutils.so.4
    libkresources.so.4
    libqgpgme.so.7
    linux-vdso.so.1
guest@porteus:~$ for m in $(cat m); do grep $m  /var/log/packages/*; done
/var/log/packages/libgphoto2-2.5.10-x86_64-1:usr/lib64/libgphoto2.so.6.0.0
/var/log/packages/libgphoto2-2.5.10-x86_64-1:usr/lib64/libgphoto2_port.so.12.0.0
/var/log/packages/kde-baseapps-16.08.3-x86_64-1alien:usr/lib64/libkonq.so.5.14.26
Just threw up 2 packages out of the list of missing dependencies. This could have its explanation in this post: http://forum.porteus.org/viewtopic.php? ... 436#p51284

EDIT as of Sun Mar 19 15:52:28 UTC 2017
Package Allocation

Code: Select all

root@porteus:/home/guest# for m in $(cat m); do yes | usm -s $m ; done
# EDITED OUTPUT
 ----------------------------- 
 Are you searching for a library file? 
 libakonadi-contact.so.4  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 libakonadi-kde.so.4  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 libgpgme++-pthread.so.2  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 no package found for: libgpgmepp.so.6 
 libgphoto2.so.6  was found in   libgphoto2-2.5.10-x86_64-1.txz 
 libgphoto2_port.so.12  was found in   libgphoto2-2.5.10-x86_64-1.txz 
 libkabc.so.4  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 libkcalcore.so.4  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 libkldap.so.4  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 libkmime.so.4  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 libkonq.so.5  was found in   kde-baseapps-4.14.3-x86_64-2.txz 
 libkpimutils.so.4  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 libkresources.so.4  was found in   kdepimlibs-4.14.10-x86_64-2.txz 
 no package found for: libqgpgme.so.7 
 no package found for: linux-vdso.so.1 
Last edited by Bogomips on 19 Mar 2017, 17:18, edited 2 times in total.
Reason: Package Allocation
Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB

User avatar
Blaze
DEV Team
DEV Team
Posts: 3869
Joined: 28 Dec 2010, 11:31
Distribution: ⟰ Porteus current ☯ all DEs ☯
Location: ☭ Russian Federation, Lipetsk region, Dankov
Contact:

Re: Porteus-v3.2.2 bug reports here

Post#112 by Blaze » 19 Mar 2017, 18:35

Cinnamon x86_64

3) Addition. I plug on my Android 6 phone to the USB port of PC.

If I open nemo as guest - I see partition (WT19i) of my phone at the left sidebar of nemo
Image

If I open nemo as root - I don't see partition (WT19i) of my phone at the left sidebar of nemo
Image

An error from the same series that I described earlier :(
Linux 6.6.11-porteus #1 SMP PREEMPT_DYNAMIC Sun Jan 14 12:07:37 MSK 2024 x86_64 Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz GenuineIntel GNU/Linux
MS-7A12 » [AMD/ATI] Navi 23 [Radeon RX 6600] [1002:73ff] (rev c7) » Vengeance LPX 16GB DDR4 K2 3200MHz C16

donald
Full of knowledge
Full of knowledge
Posts: 2064
Joined: 17 Jun 2013, 13:17
Distribution: Porteus 3.2.2 XFCE 32bit
Location: Germany

Re: Porteus-v3.2.2 bug reports here

Post#113 by donald » 19 Mar 2017, 19:37

@ Blaze
Hi
Did you log in as root -- or did you start a nemo(root) being logged in as guest?
look here:
viewtopic.php?f=81&t=6531&sid=95f70de24 ... 220e817d3f

Evan
Shogun
Shogun
Posts: 466
Joined: 11 Apr 2016, 09:00
Distribution: Distribution: *

Porteus-v3.2.2 bug reports here

Post#114 by Evan » 20 Mar 2017, 00:54

<removed>
Last edited by Evan on 06 Apr 2018, 06:50, edited 1 time in total.

User avatar
Ed_P
Contributor
Contributor
Posts: 8341
Joined: 06 Feb 2013, 22:12
Distribution: Cinnamon 5.01 ISO
Location: Western NY, USA

Re: Porteus-v3.2.2 bug reports here

Post#115 by Ed_P » 20 Mar 2017, 03:33

Yup. Confirmed.

BTW Evan in the /usr/share/applications folder find the Firefox file, right click on it and open it with Mousepad, delete the bottom two lines. Need to do this as root. :)

Code: Select all

NoDisplay=true
X-Desktop-File-Install-Version=0.22
Or replace it with this code:

Code: Select all

[Desktop Entry]
Exec=firefox %u
Icon=firefox
Type=Application
Categories=Network;
Name=Firefox
Name[bn]=ফায়ারফক্স
Name[eo]=Mozilo Fajrovulpo
Name[fi]=Mozilla Firefox
Name[pa]=ਫਾਇਰਫੋਕਸ
Name[tg]=Рӯбоҳи оташин
GenericName=Web Browser
GenericName[af]=Web Blaaier
GenericName[ar]=متصفح ويب
GenericName[az]=Veb Səyyahı
GenericName[bg]=Браузър
GenericName[bn]=ওয়েব ব্রাউজার
GenericName[br]=Furcher ar Gwiad
GenericName[bs]=WWW Preglednik
GenericName[ca]=Fullejador web
GenericName[cs]=WWW prohlížeč
GenericName[cy]=Porydd Gwe
GenericName[da]=Browser
GenericName[de]=Web-Browser
GenericName[el]=Περιηγητής Ιστού
GenericName[eo]=TTT-legilo
GenericName[es]=Navegador web
GenericName[et]=Veebilehitseja
GenericName[eu]=Web arakatzailea
GenericName[fa]=مرورگر وب
GenericName[fi]=WWW-selain
GenericName[fo]=Alnótsfar
GenericName[fr]=Navigateur web
GenericName[gl]=Navegador Web
GenericName[he]=דפדפן אינטרנט
GenericName[hi]=वेब ब्राउज़र
GenericName[hr]=Web preglednik
GenericName[hu]=Webböngésző
GenericName[is]=Vafri
GenericName[it]=Browser Web
GenericName[ja]=ウェブブラウザ
GenericName[ko]=웹 브라우저
GenericName[lo]=ເວັບບຣາວເຊີ
GenericName[lt]=Žiniatinklio naršyklė
GenericName[lv]=Web Pārlūks
GenericName[mk]=Прелистувач на Интернет 
GenericName[mn]=Веб-Хөтөч
GenericName[nb]=Nettleser
GenericName[nds]=Nettkieker
GenericName[nl]=Webbrowser
GenericName[nn]=Nettlesar
GenericName[nso]=Seinyakisi sa Web
GenericName[pa]=ਵੈਬ ਝਲਕਾਰਾ
GenericName[pl]=Przeglądarka WWW
GenericName[pt]=Navegador Web
GenericName[pt_BR]=Navegador Web
GenericName[ro]=Navigator de web
GenericName[ru]=Веб-браузер
GenericName[se]=Fierpmádatlogan
GenericName[sk]=Webový prehliadač
GenericName[sl]=Spletni brskalnik
GenericName[sr]=Веб претраживач
GenericName[sr@Latn]=Veb pretraživač
GenericName[ss]=Ibrawuza yeWeb 
GenericName[sv]=Webbläsare
GenericName[ta]=வலை உலாவி
GenericName[tg]=Тафсиргари вэб
GenericName[th]=เว็บบราวเซอร์
GenericName[tr]=Web Tarayıcı
GenericName[uk]=Навігатор Тенет
GenericName[uz]=Веб-браузер
GenericName[ven]=Buronza ya Webu
GenericName[vi]=Trình duyệt Web
GenericName[wa]=Betchteu waibe
GenericName[xh]=Umkhangeli zincwadi we Web
GenericName[zh_CN]=网页浏览器
GenericName[zh_TW]=網頁瀏覽器
GenericName[zu]=Umcingi we-Web
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;
X-KDE-StartupNotify=true
Ed

User avatar
Blaze
DEV Team
DEV Team
Posts: 3869
Joined: 28 Dec 2010, 11:31
Distribution: ⟰ Porteus current ☯ all DEs ☯
Location: ☭ Russian Federation, Lipetsk region, Dankov
Contact:

Re: Porteus-v3.2.2 bug reports here

Post#116 by Blaze » 20 Mar 2017, 05:30

donald wrote:or did you start a nemo(root) being logged in as guest?
Yes.
This only happens when you start "thunar(root)" while being logged in as guest.

Logged in as guest; thunar(root) starts via gksu. -- not real root--
If you invoke the "mount iso" command
"/usr/libexec/gvfsd-archive file=some iso"
in a guest su to root terminal you will get:
Error connecting to D-Bus: The connection is closed (g-io-error-quark, 18)
because the dbus-session is running for (logged in) guest and not for root.

Log in as "real" root and Thunar works as expected.

you could also use an archive-manager like Engrampa to open iso files
(included in stock porteus XFCE)
the same story. If this can be fixed - it will be great!

If I open ISO via Engrampa as guest and extract content of ISO to the USB stick - permissions is broken, because I'm guest (not root)
Open Engrampa as root and extract content of ISO to the USB stick do not offer.
Linux 6.6.11-porteus #1 SMP PREEMPT_DYNAMIC Sun Jan 14 12:07:37 MSK 2024 x86_64 Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz GenuineIntel GNU/Linux
MS-7A12 » [AMD/ATI] Navi 23 [Radeon RX 6600] [1002:73ff] (rev c7) » Vengeance LPX 16GB DDR4 K2 3200MHz C16

Evan
Shogun
Shogun
Posts: 466
Joined: 11 Apr 2016, 09:00
Distribution: Distribution: *

Porteus-v3.2.2 bug reports here

Post#117 by Evan » 21 Mar 2017, 00:00

<removed>
Last edited by Evan on 06 Apr 2018, 06:58, edited 1 time in total.

User avatar
Ed_P
Contributor
Contributor
Posts: 8341
Joined: 06 Feb 2013, 22:12
Distribution: Cinnamon 5.01 ISO
Location: Western NY, USA

Re: Porteus-v3.2.2 bug reports here

Post#118 by Ed_P » 21 Mar 2017, 01:00

Evan in your /home/guest/Desktop folder create a file named Firefox.desktop. Paste this in it:

Code: Select all

[Desktop Entry]
Name=Firefox
Exec=firefox %u
Icon=firefox
Terminal=false
Type=Application
StartupNotify=true
and make it executable.

See if that helps.

Not a fix to the bug, rather a bandaide. :wink:



-edit-
Fixed coding error, and added a suggestion from Evan. Thank you Evan.
Ed

User avatar
Ed_P
Contributor
Contributor
Posts: 8341
Joined: 06 Feb 2013, 22:12
Distribution: Cinnamon 5.01 ISO
Location: Western NY, USA

Re: Porteus-v3.2.2 bug reports here

Post#119 by Ed_P » 21 Mar 2017, 05:02

@brokenman :shock:

Code: Select all

guest@porteus:~$ su
Password: 
root@porteus:/home/guest# ls -lgh /tmp
total 139M
-rw-r--r-- 1 users 139M Mar 21 00:40 firefox-52.0.1.linux-x86_64.sdk.tar.bz2
drwx------ 2 users   60 Mar 21 00:44 firefox_guest/
drwx------ 2 users   40 Mar 21 00:38 mozilla_guest0/
drwxr-xr-x 3 root    80 Mar 21 00:42 portff/
drwx------ 2 users   80 Mar 21 00:34 pulse-PKdhtXMmr18n/
root@porteus:/home/guest# update-firefox
Checking internet ...
Downloading: update-firefox-live  DONE

 A firefox tarball was found in /tmp 
 We will use this archive to create firefox.

Choose the firefox file you want to process.


1) firefox-52.0.1.linux-x86_64.sdk.tar.bz2
#? 1
CHOICE:firefox-52.0.1.linux-x86_64.sdk.tar.bz2
 Checking for Porteus ... 
[PASS] Distro is Porteus

A slackware package will be created. 
 Would you like to create a Porteus module? [y/n]
 Decompressing firefox tarball ... 
tar: firefox-52.0.1.linux.tar.bz2: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
 Failed to decompress tarball.
root@porteus:/home/guest# 
 
OMG!!

Code: Select all

root@porteus:/home/guest# ls -lgh /tmp
total 278M
-rw-r--r-- 1 users 139M Mar 21 00:58 firefox-52.0.1.linux-x86_64.sdk.tar.bz2
-rw-r--r-- 1 users 139M Mar 21 01:04 firefox-52.0.1esr.linux-x86_64.sdk.tar.bz2
drwx------ 2 users   60 Mar 21 00:54 firefox_guest/
drwx------ 2 users   40 Mar 21 01:01 mozilla_guest0/
drwxr-xr-x 3 root    80 Mar 21 01:00 portff/
drwx------ 2 users   80 Mar 21 00:53 pulse-PKdhtXMmr18n/
drwxr-xr-x 2 root    40 Mar 21 00:53 usm/
root@porteus:/home/guest# update-firefox
Checking internet ...
Downloading: update-firefox-live  DONE
/usr/local/bin/update-firefox-live: line 136: [: /tmp/firefox-52.0.1.linux-x86_64.sdk.tar.bz2: binary operator expected

 Getting latest firefox version ... 
[PASS] Latest version: firefox-53.0b5
 Checking for Porteus ... 
[PASS] Distro is Porteus

The porteus server version is:  52.0b7 
The latest version is:  firefox-53.0b5 
 Would you like to download the porteus server version? [y/n]
 Would you like to build the latest version? [y/n]

root@porteus:/home/guest#
@brokenman PLEASE bring back USM as an option for Firefox updates.
Ed

Evan
Shogun
Shogun
Posts: 466
Joined: 11 Apr 2016, 09:00
Distribution: Distribution: *

Porteus-v3.2.2 bug reports here

Post#120 by Evan » 21 Mar 2017, 06:41

<removed>
Last edited by Evan on 06 Apr 2018, 06:58, edited 1 time in total.

Post Reply