[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: cdrecord suddenly doesn't allow burning



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, danirain@tin.it



Reply to: