usm-3.2
- brokenman
- Site Admin
- Posts: 6105
- Joined: 27 Dec 2010, 03:50
- Distribution: Porteus v4 all desktops
- Location: Brazil
usm-3.2
Post#1 by brokenman » 08 Aug 2016, 04:30
https://sourceforge.net/projects/usm/files/14.2/
Wear your underpants on the outside and put on a cape.
brokenman
-
- Contributor
- Posts: 1955
- Joined: 09 Aug 2013, 14:25
- Distribution: Nemesis Cinnamon 64
- Location: USA
Re: usm-3.2
Post#2 by Jack » 08 Aug 2016, 17:16
Jack
Ed_P
-
- Full of knowledge
- Posts: 2564
- Joined: 25 Jun 2014, 15:21
- Distribution: 3.2.2 Cinnamon & KDE5
- Location: London
Re: usm-3.2
Post#4 by Bogomips » 08 Aug 2016, 23:19

NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
Bogomips
-
- Contributor
- Posts: 1955
- Joined: 09 Aug 2013, 14:25
- Distribution: Nemesis Cinnamon 64
- Location: USA
Re: usm-3.2
Post#5 by Jack » 08 Aug 2016, 23:28
This is the version. And I haven't upgrade to the one he just posted.Ed_P wrote:What does usm -v show you? (you need to do su & toor 1st)
Code: Select all
guest@porteus:~$ su
Password:
root@porteus:/home/guest# usm -v
You are using USM version: 3.2.0
root@porteus:/home/guest#
Jack
-
- Contributor
- Posts: 1955
- Joined: 09 Aug 2013, 14:25
- Distribution: Nemesis Cinnamon 64
- Location: USA
Re: usm-3.2
Post#6 by Jack » 08 Aug 2016, 23:34
I think your right but I think it for those who didn't upgrade to 001, 002 and 003 when he release it.Bogomips wrote:Downloaded and tried. As far as I can tell no difference with rc4+.
Jack
- brokenman
- Site Admin
- Posts: 6105
- Joined: 27 Dec 2010, 03:50
- Distribution: Porteus v4 all desktops
- Location: Brazil
Re: usm-3.2
Post#7 by brokenman » 09 Aug 2016, 01:53
The difference is that the usm-3.2 that shipped with rc4 is pulling from slackware-14.1. Meaning that the LIBS.TXT was generated from the slackware-14.1 repo. The new usm-3.2 that I uploaded is pulling from the slackware-14.2 repos. The LIBS.TXT file is generated from the slackware-14.2 repository. From a user's point of view you probably wouldn't notice any difference, but the difference is there.Downloaded and tried. As far as I can tell no difference with rc4+
Wear your underpants on the outside and put on a cape.
brokenman
-
- White ninja
- Posts: 12
- Joined: 07 Mar 2016, 13:56
- Distribution: Porteus 3.2.2, Peppermint 7
- Location: Nigeria
Re: usm-3.2
Post#8 by lordVortex » 22 Aug 2016, 15:29
Screenshot:

lordVortex
-
- Contributor
- Posts: 1955
- Joined: 09 Aug 2013, 14:25
- Distribution: Nemesis Cinnamon 64
- Location: USA
Re: usm-3.2
Post#9 by Jack » 22 Aug 2016, 15:57
I receive the same error.lordVortex wrote:Upgraded USM and databases (no databases were present before). I successfully downloaded ISO Master, but trying to download PCManFM gave an error of a missing LIBS.TXT. I checked all folders in /var/usm, LIBS.TXT were in all except sbo (filename was lower case in local folder). Running Porteus 3.2rc4 MATE, with new 001, 002, and 003-mate xzms.
Screenshot:
Jack
-
- White ninja
- Posts: 12
- Joined: 07 Mar 2016, 13:56
- Distribution: Porteus 3.2.2, Peppermint 7
- Location: Nigeria
Re: usm-3.2
Post#10 by lordVortex » 22 Aug 2016, 16:07
Any idea what could've caused it? I wanna dig through the usm scripts to see if I can find it, but I doubt I will. I'm not that good at bash scripts.Jack wrote:I receive the same error.lordVortex wrote:Upgraded USM and databases (no databases were present before). I successfully downloaded ISO Master, but trying to download PCManFM gave an error of a missing LIBS.TXT. I checked all folders in /var/usm, LIBS.TXT were in all except sbo (filename was lower case in local folder). Running Porteus 3.2rc4 MATE, with new 001, 002, and 003-mate xzms.
Screenshot:
lordVortex
- francois
- Contributor
- Posts: 6514
- Joined: 28 Dec 2010, 14:25
- Distribution: xfce plank porteus nemesis
- Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.
Re: usm-3.2
Post#11 by francois » 22 Aug 2016, 16:17
Would usm 3.2 be good for porteus 3.1?
francois
-
- White ninja
- Posts: 12
- Joined: 07 Mar 2016, 13:56
- Distribution: Porteus 3.2.2, Peppermint 7
- Location: Nigeria
Re: usm-3.2
Post#12 by lordVortex » 22 Aug 2016, 17:03
Code: Select all
## Find distro that has dependency
TARGLIB=`find -L $DBDIR -type f -name "LIBS.TXT" | xargs grep -i "^$PKG" | head -n1 | awk -F: '{print$1}'`
[ $CLI ] && [ -z $TARGLIB ] && fatality "$SCRIPT $FUNCNAME $LINENO" "`gettext "Please wait 6 hours for the next database update. Could not find:"`" "LIBS.TXT"
[ $GUI ] && [ -z $TARGLIB ] && { echo "`gettext "Please wait 6 hours for the next database update. Could not find:"`" "LIBS.TXT" > $TMPDIR/.stream; gtk_message2 "`gettext "Fatal error"`" "LIBS.TXT"; exit; }
Manually running each command and substituting variables:
Code: Select all
root@porteus:/var/usm# find -type f -name "LIBS.TXT" | xargs grep -i "^libfm.so" | head -n1 | awk -F: '{print$1}'
root@porteus:/var/usm# find -type f -name "LIBS.TXT" | xargs grep -i "^libfm-1.2.4-x86_64-2ponce.txz" | head -n1 | awk -F: '{print$1}
>
> '
./ponce/LIBS.TXT
root@porteus:/var/usm# [ -z ./ponce/LIBS.TXT ]
root@porteus:/var/usm# [ -z ./ponce/LIBS.TXT ] && echo "Test"
root@porteus:/var/usm# find -type f -name "LIBS.TXT" | xargs grep -i "^libfm-extra-1.2.4-x86_64-1alien.txz" | head -n1 | awk -F: '{print$1}'
root@porteus:/var/usm# find -type f -name "LIBS.TXT" | xargs grep -i "^libfm-extra*" | head -n1 | awk -F: '{print$1}'
./slackonly/LIBS.TXT
root@porteus:/var/usm# find -type f -name "LIBS.TXT" | xargs grep -i "^libfm-1.2.4-x86_64-2ponce.txz" | head -n1 | awk -F: '{print$1}'
./ponce/LIBS.TXT
root@porteus:/var/usm#
Screenshot:

Sorry for any inaccuracies, as previously mentioned, I'm not that good with bash.
lordVortex
-
- White ninja
- Posts: 12
- Joined: 07 Mar 2016, 13:56
- Distribution: Porteus 3.2.2, Peppermint 7
- Location: Nigeria
Re: usm-3.2
Post#13 by lordVortex » 22 Aug 2016, 17:06
Just noticed this.brokenman wrote:Please keep in mind that updating of the databases is done manually at the moment while still in testing

lordVortex
- brokenman
- Site Admin
- Posts: 6105
- Joined: 27 Dec 2010, 03:50
- Distribution: Porteus v4 all desktops
- Location: Brazil
Re: usm-3.2
Post#14 by brokenman » 23 Aug 2016, 01:41
Francois you could use the newer USM with slackware 3.1 but be aware that it is pulling from slackware-14.2.
Wear your underpants on the outside and put on a cape.
brokenman
- francois
- Contributor
- Posts: 6514
- Joined: 28 Dec 2010, 14:25
- Distribution: xfce plank porteus nemesis
- Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.
Re: usm-3.2
Post#15 by francois » 23 Aug 2016, 02:36

francois