6 Feb 2010 berend   » (Journeyer)

Problem solving day I think. Needed to make a copy of DVD on FreeBSD. Used the command:


growisofs -Z /dev/acd0 -dvd-video /path/

But this aborted with:


:-( unable to CAMGETPASSTHRU for /dev/acd0: 
Inappropriate ioctl for device

It appeared I had to do two things: make sure the atapicam driver is loaded and when done, use the proper device, i.e. the cd not the ac0 driver:


kldload atapicam
growisofs -Z /dev/cd0 -dvd-video /path/

Loading this driver is best done at boot in /boot/loader.conf where I also enabled dma:


hw.ata.atapi_dma="1"
atapicam_load="YES"

Latest blog entries     Older blog entries

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!