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
USM GUI & USM Folder Somehow Deleted
- Rava
- Contributor
- Posts: 5424
- Joined: 11 Jan 2011, 02:46
- Distribution: XFCE 5.01 x86_64 + 4.0 i586
- Location: Forests of Germany
Re: USM GUI & USM Folder Somehow Deleted
I run 3.1 x86-64 but the path should be the same:
HTH!
(What is fw, you might ask? It's a script of mine doing this:)
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
(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
Cheers!
Yours Rava
Yours Rava
Re: USM GUI & USM Folder Somehow Deleted
Okay Rava, I'll try that out soon! Thanks!!
Jim in NYC
Jim in NYC
- Ed_P
- Contributor
- Posts: 8547
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Re: USM GUI & USM Folder Somehow Deleted
!!jimwg wrote:While trying to find a way to install a GUI for my XFCE USM
?? What was the "initial problem"?How go I correct this and fix my 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
Ed_P wrote:!!jimwg wrote:While trying to find a way to install a GUI for my XFCE USM
?? What was the "initial problem"?How go I correct this and fix my 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