If you get something like this:
Check your dvd. Konsole:
Problem could be that media players are looking /dev/dvd => "The source can't be read" error.
This could be related to the Deja Vu
You could:
K > Multimedia > Kaffeine
Kaffeine > Settings > Xine Engine Parameters > media (Beginner Options)
There is: dvd.device, device used for DVD playback. default is /dev/dvd, change it to the /dev/dvd2
Same thing with the other players (mplayer...)
Or simply make symlinks /1/
Konsole:
so now:
Konsole:
Permanent fix
If you make symlinks to the /dev folder they will be erased when you turn the power off.
Kubuntu use udev. udev wiki:
man udev
/etc/udev/rules.d/70-persistent-cd.rules have lines:
Pressing Alt + F2 and kdesudo kate /etc/udev/rules.d/70-persistent-cd.rules
Changing "dvd2" and "dvdrw2" to the "dvd" and "dvdrw". Restarting.
is now:
/1/ Symbolic link
http://en.wikipedia.org/wiki/Symbolic_link
man ln:
Xine Message - Kaffeine Player
The source can't be read.
Maybe you don't have enough rights for this, or source doesn't contain data (e.g: no disc in drive). (/dev/dvd)
The source can't be read.
Maybe you don't have enough rights for this, or source doesn't contain data (e.g: no disc in drive). (/dev/dvd)
Check your dvd. Konsole:
Code:
ls -l /dev/dvd*
lrwxrwxrwx 1 root root 4 2008-04-09 17:50 /dev/dvd2 -> scd0
lrwxrwxrwx 1 root root 4 2008-04-09 17:50 /dev/dvdrw2 -> scd0
lrwxrwxrwx 1 root root 4 2008-04-09 17:50 /dev/dvdrw2 -> scd0
This could be related to the Deja Vu
You could:
K > Multimedia > Kaffeine
Kaffeine > Settings > Xine Engine Parameters > media (Beginner Options)
There is: dvd.device, device used for DVD playback. default is /dev/dvd, change it to the /dev/dvd2
Same thing with the other players (mplayer...)
Or simply make symlinks /1/
Konsole:
Code:
sudo ln -s /dev/dvd2 /dev/dvd sudo ln -s /dev/dvdrw2 /dev/dvdrw
Konsole:
Code:
ls -l /dev/dvd*
lrwxrwxrwx 1 root root 9 2008-04-09 18:22 /dev/dvd -> /dev/dvd2
lrwxrwxrwx 1 root root 4 2008-04-09 17:50 /dev/dvd2 -> scd0
lrwxrwxrwx 1 root root 11 2008-04-09 18:22 /dev/dvdrw -> /dev/dvdrw2
lrwxrwxrwx 1 root root 4 2008-04-09 17:50 /dev/dvdrw2 -> scd0
lrwxrwxrwx 1 root root 4 2008-04-09 17:50 /dev/dvd2 -> scd0
lrwxrwxrwx 1 root root 11 2008-04-09 18:22 /dev/dvdrw -> /dev/dvdrw2
lrwxrwxrwx 1 root root 4 2008-04-09 17:50 /dev/dvdrw2 -> scd0
Permanent fix
If you make symlinks to the /dev folder they will be erased when you turn the power off.
Kubuntu use udev. udev wiki:
udev is the device manager for the Linux 2.6 kernel series. Its primary function is managing device nodes in /dev. It is the successor of devfs and hotplug, which means that it handles the /dev directory and all user space actions when adding/removing devices, including firmware load....
man udev
UDEV(7) udev UDEV(7)
NAME
udev - dynamic device management
DESCRIPTION
udev provides a dynamic device directory containing only the files for
actually present devices. It creates or removes device node files in
the /dev directory, or it renames network interfaces.
...
CONFIGURATION
All udev configuration files are placed in /etc/udev/*. Every file
consists of a set of lines of text. All empty lines or lines beginning
with ´#´ will be ignored.
...
UDEV(7) udev UDEV(7)
NAME
udev - dynamic device management
DESCRIPTION
udev provides a dynamic device directory containing only the files for
actually present devices. It creates or removes device node files in
the /dev directory, or it renames network interfaces.
...
CONFIGURATION
All udev configuration files are placed in /etc/udev/*. Every file
consists of a set of lines of text. All empty lines or lines beginning
with ´#´ will be ignored.
...
Code:
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:09.0-scsi-1:0:0:0", SYMLINK+="dvd2", ENV{GENERATED}="1" ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:09.0-scsi-1:0:0:0", SYMLINK+="dvdrw2", ENV{GENERATED}="1"
Changing "dvd2" and "dvdrw2" to the "dvd" and "dvdrw". Restarting.
Code:
ls -l /dev/dvd*
lrwxrwxrwx 1 root root 4 2008-04-09 22:56 /dev/dvd -> scd0
lrwxrwxrwx 1 root root 4 2008-04-09 22:56 /dev/dvdrw -> scd0
lrwxrwxrwx 1 root root 4 2008-04-09 22:56 /dev/dvdrw -> scd0
/1/ Symbolic link
http://en.wikipedia.org/wiki/Symbolic_link
man ln:
NAME
ln - make links between files
-s, --symbolic
make symbolic links instead of hard links
ln - make links between files
-s, --symbolic
make symbolic links instead of hard links
Comment