$ vlc
VLC media player 2.2.8 Weatherwax (revision 2.2.7-14-g3cc1d8cba9)
[0000000802457050] core libvlc: Lancement de vlc avec l'interface par défaut. Utilisez « cvlc » pour démarrer VLC sans interface.
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-nicolas'
libGL error: failed to open drm device: Permission denied
libGL error: failed to load driver: i965
[000000081aa12050] core input error: open of `cdda:///dev/cd0' failed ls -l /dev/cd0 show you?peter@zefiris:/dev $ ls -l cd*
crw-r-----  1 root  dvd       0x60 May 21 04:57 cd0
crw-r-----  1 root  operator  0x63 May 21 04:57 cd1own     cd0     root:dvdThat's your problem right there. Your current account isn't root (as shown by the prompt) and unless it's a member of the operator group then you can't use this device.Code:$ ls -l /dev/cd0 crw-r----- 1 root operator 0x66 4 juin 21:23 /dev/cd0
 whoami or  id to make sure). su) and add yourself to the operator group:  # pw groupmod operator -m <your username here>. id to verify that your account is now a member of operator. After that: happy CD'ing 
