Asked By
Reenee
0 points
N/A
Posted on - 11/29/2011
Hi all,
I started using Linux OS and I am a new user of this OS. This may be something normal but I have to ask.
When I connect USB or iPod I got an error message. What should I do?
Thank you Rene
Error:
Cannot mount volume.
Error org.freedesktop.DBus.Error.AccessDenied.
Details
A security policy in place prevents this sender from sending this message to this recipient, see message bus configuration file (rejected message had interface "org.freedesktop.
Hal.Device.Volume” member" Mount" error name “(unset)” destination “org.freedesktop.Hal”)
Cannot mount volume on Linux OS
You are getting this error because you are logged in as a user which does not belong to plugdev group. You can confirm it by following directory :
/etc/login.defs
it will surely gives you following results
CONSOLE_GROUPS floppy:audio:cdrom:video:plugdev
This issue will be fixed when you log in through /bin/login or by adding /etc/login.defs to session manager that you are using like KDM or GDM.
Cannot mount volume on Linux OS
Hi Reenee,
In order to have all the privileges to mount drives in Linus OS, you must be mounting the drives as root user. Mount command is generally restricted to the root user. After mounting the drives, you must specify the destination folder.
You can type help in the Linux command prompt window to get the way forward on how to write code for mounting drives and specifying the destination directory.
You can also try and press ALT+F2 and type gksu gedit /etc/fstab. This code will open /etc/fstab/ in Gedit with root privileges and the proceed from there. The aim is to get root privileges to mount the drives.
Thank you.