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 username
Code: Select all
newgrp fuse