Joris Huizer wrote: > /usr/bin/cdrecord: Permission denied
It seems that /usr/bin/cdrecord has been replaced by a script, which calls the appropriate executable depending on the kernel version: AinSoph:~# cat /usr/bin/cdrecord #!/bin/sh VERS=`/sbin/kernelversion` case $VERS in 2.0|2.2) exec cdrecord.shm "$@" ;; 2.4|*) exec cdrecord.mmap "$@" ;; esac You can fiddle with the permissions of cdrecord.* On my system, everything works if I chmod +r /usr/bin/cdrecord -- Danilo Raineri, [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]