You are not logged in.
Pages: 1
With the recent change to udev optical drives belong to disk group instead of optical. To play a dvd I either have to add my self to disk group or setup up a rule in /etc/udev/rules.d/ to change the group to optical. Those are the two methods that I've been able to make work but I believe they will be depreciated.
Moving forward how is archbang going to handle this? Policykit, udisks, what? If someone can shed some light on this for me I'd appreciate it.
Last edited by nemesis2all (2011-10-25 07:56:22)
Offline
Thanks for bringing this to attention!!
I'm not sure what's going to happen because apparently there will be more work done by Tom Gunderson this week on udev. Some things changed with storage as well. We'll have to wait to hear what Will says as he will be the one to make the decisions and changes.
Until then it is probably easier for everyone to:
# gpasswd -a yourusername diskto add yourself to disk group if watching DVD's is required for now.
For those of you who want to know what groups you are added to:
# nano /etc/groupswill show you the groups.
GUI's?? We don't need no stinkin' GUI's!!!
Offline
It think this is something that belongs in update warnings.
I will do it.
Getting your questions answered here at ArchBang Forums
Please! Always give hardware info, if there is a chance that 's relevant: #lspci -vnn
Quote: What I have learnt from Linux is to minimize dependencies and functionalities for greater independence.
On Arch(bang) and Openbox: http://stillstup.blogspot.com/
Offline
Thanks pablokal!
I have three lectures to give today and very busy.
GUI's?? We don't need no stinkin' GUI's!!!
Offline
@pablokal can you add code tags to warning thread please, I cannot edit it [no special powers!] just make it more clearer
bring back hotplug ![]()
Offline
@ Mr Green
I just did. You can't edit the post? Let me check.
GUI's?? We don't need no stinkin' GUI's!!!
Offline
Cannot even reply... not a bad thing keeps forum nice and tidy....
Offline
Also the other part of upgrade is udev isn't creating symlinks. So if needed you can add this to /etc/rc.local
# create optical drive symlinks
ln -s /dev/sr0 /dev/cdrom
ln -s /dev/sr0 /dev/cdrw
ln -s /dev/sr0 /dev/dvd
ln -s /dev/sr0 /dev/dvdrwBelow is an alternative method to adding yourself to the group disk. You can create your own udev rule in /etc/udev/rules.d
81-custom-optical-group.rules
# permissions for IDE CD devices
SUBSYSTEMS=="ide", KERNEL=="hd[a-z]", ATTR{removable}=="1", ATTRS{media}=="cdrom*", GROUP="optical"
# permissions for SCSI CD devices
SUBSYSTEMS=="scsi", KERNEL=="s[rg][0-9]*", ATTRS{type}=="5", GROUP="optical"Last edited by nemesis2all (2011-10-25 08:04:19)
Offline
Pages: 1