Page 1 of 1

USM GUI & USM Folder Somehow Deleted

Posted: 23 Jun 2015, 23:59
by jimwg
Greetings!

While trying to find a way to install a GUI for my XFCE USM in place its pop-up command line on a new 3.1 32bit flash this opened up:

bash: /usr/sbin/usm: No such file or directory
root@porteus:~#

How go I correct this and fix my initial problem?

Thanks!

Jim in NYC

Re: USM GUI & USM Folder Somehow Deleted

Posted: 24 Jun 2015, 04:46
by Rava
I run 3.1 x86-64 but the path should be the same:

Code: Select all

root@porteus:/mnt# file /usr/sbin/usm
/usr/sbin/usm: ERROR: cannot open `/usr/sbin/usm' (No such file or directory)
root@porteus:/mnt# fw usm
/usr/bin/usm: Bourne-Again shell script, ASCII text executable
HTH!

(What is fw, you might ask? It's a script of mine doing this:)

Code: Select all

#!/bin/bash
VERSION="0.3"
MYNAME="fw (file-which)"

if [ $# -ne 1 ]; then
    echo -e $MYNAME V$VERSION
    echo -e "You must specify *one* filename for which!"
    exit 1
else
    file `which "$1"` 2>/dev/null
    errorcode=$?
    if [ $errorcode -ne 0 ]; then
        echo -e $MYNAME V$VERSION
	echo -e "Errorcode $errorcode returned!
(Errormessage of \`file\` is suppressed)"
	exit 2
    fi
fi

exit 0

Re: USM GUI & USM Folder Somehow Deleted

Posted: 24 Jun 2015, 10:57
by jimwg
Okay Rava, I'll try that out soon! Thanks!!

Jim in NYC

Re: USM GUI & USM Folder Somehow Deleted

Posted: 25 Jun 2015, 05:14
by Ed_P
jimwg wrote:While trying to find a way to install a GUI for my XFCE USM
!!
How go I correct this and fix my initial problem?
?? What was the "initial problem"?

To download the current 3.1.7 app and reinstall it see this link:
http://sourceforge.net/projects/usm/files/

Re: USM GUI & USM Folder Somehow Deleted

Posted: 01 Jul 2015, 07:41
by jimwg
Ed_P wrote:
jimwg wrote:While trying to find a way to install a GUI for my XFCE USM
!!
How go I correct this and fix my initial problem?
?? What was the "initial problem"?

To download the current 3.1.7 app and reinstall it see this link:
http://sourceforge.net/projects/usm/files/

Thanks!!!

Jim in NYC