You are not logged in.
Pages: 1
I did a
# gpasswd -a username optical
# gpasswd -a username storage
# gpasswd -a username disk
and I'm not sure, which group is necessary for hal and dbus to work with my usb-stick and why. "For dbus and hal to function properly, local user accounts must be members of the following groups: optical, storage" according to the wiki http://wiki.archlinux.org/index.php/HAL. Why? What is the group disk good for?
Do I need the udev-rule of the wiki http://wiki.archlinux.org/index.php/Usi … o_a_device as well?
In my case it looks like:
BUS=="usb", ATTRS{serial}=="14AB0000000096", KERNEL=="sd?1", NAME="%k", SYMLINK+="1GB_PQ", GROUP="storage".
I'm not keen to remove entry by entry, because I don't want to touch the "running system".
Offline
m...
my understanding may not be correct, but afaik:
dbus is a sub-system for (desktop) applications to communicate, so it is not relevant to the optical/storage problem.
(By saying "sub-system", I mean that dbus includes daemon(s), library(s), programming framework,..., etc.)
and udev is to dynamically create device nodes depending on your current hardware.
while creating a device node, for example: a usb massive storage, it will set the group of the device node to "storage".
and that is why you have to add a user to "storage" group to access these devices.
as for hal, it is an hardware abstraction layer, which can do some tricks depending on hardware events, for example: while you plug in the usb stick.
Last edited by bsdson.tw (2007-11-15 02:49:47)
Offline
I'm not keen to remove entry by entry, because I don't want to touch the "running system".
just add "hal" (hal starts dbus, so you can skip that) to DAEMONS, and you should be able to mount media with gnome/kde without much trouble.
btw, "storage" is for disks (usb/internal) and "optical" is for cd/dvd drives...
Last edited by pelle.k (2007-11-15 05:09:21)
"Your beliefs can be like fences that surround you.
You must first see them or you will not even realize that you are not free, simply because you will not see beyond the fences.
They will represent the boundaries of your experience."
SETH / Jane Roberts
Offline
thanks for the explication. I've will do so (only hal in rc.conf) and report, weather or not the stick works in xfce mount manager.
Offline
Pages: 1