fuse: failed to open /dev/fuse: Permission denied
Posted: Fri Feb 01, 2008 7:51 pm
[PROBLEM]
During beta-testing of Ubuntu Hardy, I ran into some problems with wrong permissions when trying to mount e.g. USB harddisks or my CD-ROM drive.
When trying to mount an NTFS partition using ntfs-3g, I suddenly received the following error:
[SOLUTION]
The device /dev/fuse is only accessible by "root" and users of the group "fuse". Here's the output of "ls -la /dev/fuse"
In the shell it's as easy as:
You would have to logout/login (e.g. end gnome/kde session) in order for the group changes to apply, but you can also do:
to avoid the unnecessary re-login. Verify if you are really in the group fuse by calling the command "groups".
During beta-testing of Ubuntu Hardy, I ran into some problems with wrong permissions when trying to mount e.g. USB harddisks or my CD-ROM drive.
When trying to mount an NTFS partition using ntfs-3g, I suddenly received the following error:
fuse: failed to open /dev/fuse: Permission denied
[SOLUTION]
The device /dev/fuse is only accessible by "root" and users of the group "fuse". Here's the output of "ls -la /dev/fuse"
Now I saw that my user was not in the group "fuse" at all, so I just added it. You can take a look at this Linux Howto: Add a user to a group".crw-rw---- 1 root fuse 10, 229 2008-02-01 18:08 /dev/fuse
In the shell it's as easy as:
Code: Select all
sudo usermod -a -G groupname usernameCode: Select all
newgrp fuse