You are not logged in.
Pages: 1
Hi,
on my install /dev/dvd got lost. I have to create a symlink to scd0 manually. Does anybody know the reason for this udev behavior or has a solution (pointers where to look at)?
ypnos
Offline
Thank you for bringing that up. I noticed that too, but have been too lazy to look into it.
This seems to be the relavent thread: https://bbs.archlinux.org/viewtopic.php?pid=941382 I like Misfit's suggestion at the bottom, so I just added that to my /etc/rc.local file:
ln -s /dev/sr0 /dev/cdrom
ln -s /dev/sr0 /dev/cdrw
ln -s /dev/sr0 /dev/dvd
ln -s /dev/sr0 /dev/dvdrw
Offline
We don't create e.g /dev/cdrom for some time:
2011-05-19: udev 169-1 removed cdsymlinks.sh
http://projects.archlinux.org/svntogit/ … 60ccd3d56e
Offline
Thank you very much for the prompt replies and valuable information!
So you tell me everybody who wants to use mplayer dvd:// needs to has his individual stuff in rc.local? Or do I miss something?
Offline
As for the symlinks, this solution has been removed from the wiki https://wiki.archlinux.org/index.php?ti … did=168068
Offline
As for the symlinks, this solution has been removed from the wiki https://wiki.archlinux.org/index.php?ti … did=168068
Check this post:
https://bbs.archlinux.org/viewtopic.php … 2#p1010072
Last edited by BasT (2011-10-31 11:52:18)
Offline
Thank you very much for the prompt replies and valuable information!
So you tell me everybody who wants to use mplayer dvd:// needs to has his individual stuff in rc.local? Or do I miss something?
As a workaround you can use
mplayer -dvd-device /dev/sr0 dvd://
Rauchen verboten
Offline
I think mplayer's dvd:// protocol has nothing to do with the presence of actual /dev/dvd.
Arch Linux is more than just GNU/Linux -- it's an adventure
pkill -9 systemd
Offline
For my own, i've created this file (82-cdrom.rules) in /etc/udev/rules.d :
SUBSYSTEMS=="scsi", KERNEL=="sr0", GROUP="optical", SYMLINK+="cdrom dvd"
Offline
Pages: 1