Overview
This was from an old thread, but the problem is still in 10.10, so I though I'd post:
dragon --play-dvd /media/COOL_MOVIE will not work if /dev/dvd is not present as described above.
The quick fix
cd /dev/
sudo ln -s dvd1 dvd # or whatever your real dvd device is
and now launch dragon player.
Analysis
/dev/dvd should exist on most systems, however, there are instances where it will not. For example, if you have no dvd drive, or if you perform hardware changes after install. In my case, I had to replace my old dvd drive with a new one. The new drive showed as /dev/dvd1. The udev system and/or its delegates probably does this to prevent name conflicts if the original drive "comes back."
This really is a bug in dragon player. /dev/dvd is probably ok for a default, but it should honor the mount provided in the command line. And Settings should probably offer an option to set the drive device. Typically, the dvd in kde4.5 is launched from the device notifier (where you pick an action for a dvd), so the correct device should be traceable from the mount point provided on launch (e.g. click on "play movie" probably fires off dragonplayer --play-dvd /path/to/mount, and the actual device is traceable through the system equivalent to df /path/to/mount).
Hope this helps someone!
This was from an old thread, but the problem is still in 10.10, so I though I'd post:
dragon --play-dvd /media/COOL_MOVIE will not work if /dev/dvd is not present as described above.
The quick fix
cd /dev/
sudo ln -s dvd1 dvd # or whatever your real dvd device is
and now launch dragon player.
Analysis
/dev/dvd should exist on most systems, however, there are instances where it will not. For example, if you have no dvd drive, or if you perform hardware changes after install. In my case, I had to replace my old dvd drive with a new one. The new drive showed as /dev/dvd1. The udev system and/or its delegates probably does this to prevent name conflicts if the original drive "comes back."
This really is a bug in dragon player. /dev/dvd is probably ok for a default, but it should honor the mount provided in the command line. And Settings should probably offer an option to set the drive device. Typically, the dvd in kde4.5 is launched from the device notifier (where you pick an action for a dvd), so the correct device should be traceable from the mount point provided on launch (e.g. click on "play movie" probably fires off dragonplayer --play-dvd /path/to/mount, and the actual device is traceable through the system equivalent to df /path/to/mount).
Hope this helps someone!
Comment