Problem with all apps

Get help on how to use PortableLinuxApps.org and help others

Problem with all apps

Postby brazoayeye » Mon Dec 06, 2010 3:44 pm

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\?
brazoayeye
 
Posts: 1
Joined: Mon Dec 06, 2010 3:41 pm

Re: Problem with all apps

Postby probono » Tue Dec 07, 2010 2:43 am

Welcome. Are you using one of the supported distributions, as of this writing Ubuntu 10.04 (Lucid Lynx) 32-bit, OpenSUSE 11.3 (GNOME) 32-bit, and Fedora 12 (GNOME) 32-bit?

If not, it's not guaranteed that the apps will work. If you want to test anyway, you need to ensure that you have a working FUSE installation. http://en.wikipedia.org/wiki/Filesystem_in_Userspace
If you like PortableLinuxApps and the AppImage format, you might consider a donation --> Image
probono
Site Admin
 
Posts: 429
Joined: Sun Apr 25, 2010 9:41 am

Re: Problem with all apps

Postby toozzer » Tue Jan 11, 2011 2:38 pm

hello, everybody
i use gnu/linux debian distrib. when i download and run one of portablelinuxapps i see the next message:
fuse: failed to open /dev/fuse: Permission denied
open dir error: : No such file or directory

ok
Code: Select all
$ 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

run one more and see the next massage
fuse: failed to exec fusermount: Permission denied
open dir error: : No such file or directory

ok
Code: Select all
$ 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

and very well! ;)
toozzer
 
Posts: 2
Joined: Tue Jan 11, 2011 2:21 pm

Re: Problem with all apps

Postby probono » Sun Apr 07, 2013 9:39 am

Very simplistic script to set up the FUSE permissions.

I used this to get AppImages running on an otherwise untouched Scientific Linux release 6.3 Live CD.

Warning: Do this only on Live systems...

Code: Select all
#!/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")
If you like PortableLinuxApps and the AppImage format, you might consider a donation --> Image
probono
Site Admin
 
Posts: 429
Joined: Sun Apr 25, 2010 9:41 am


Return to Help

Who is online

Users browsing this forum: No registered users and 1 guest