Hi, here the problem:
$chmod a+rwx aMule...
$./aMule...
fuse: failed to exec fusermount: Permission denied
open dir error: : No such file or directory
I've the same error with all apps...
how can i solve it\?
$ ls -la /dev | grep fuse
crw-rw---- 1 root fuse fuse
# chmod a+rw /dev/fuse
$ ls -la /dev/ | grep fuse
crw-rw-rw- 1 root fuse fuse$ ls -la /usr/bin/fusermount
-rwsr-xr-- 1 root fuse /usr/bin/fusermount
# chmod a+x /usr/bin/fusermount
$ ls -la /usr/bin/fusermount
-rwsr-xr-x 1 root fuse /usr/bin/fusermount#!/usr/bin/python
import os, sys, gtk
def error(message, parent=None):
d = gtk.MessageDialog(parent,gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,gtk.MESSAGE_ERROR,gtk.BUTTONS_OK,message)
d.set_default_response(gtk.RESPONSE_OK)
r = d.run()
d.destroy()
sys.exit(message)
def do(command):
print (Running ) % (command)
os.system(command)
if (__name__ == "__main__"):
if not os.geteuid() == 0:
error('Must be run as root')
os.system('mount | grep -e "live\|casper" >/dev/null') # FIXME: Properly check for Live systems
os.system("chmod 777 /dev/fuse") # FIXME: check result
os.system("chmod 4777 /usr/bin/fusermount") # FIXME: check result
os.system("find /home -name *.AppImage -exec chmod a+x {} \;") # FIXME: check result
# error(None, "Unfortunately support for AppImages could not be installed.\nThe following test failed:", "bar")Users browsing this forum: No registered users and 1 guest