Re: how to use cdrecord

2010-03-14 Thread Erik Trulsson
On Sun, Mar 14, 2010 at 11:47:35AM +0800, Aiza wrote: Chris Hill wrote: On Sun, 14 Mar 2010, Aiza wrote: [snip] tried cdrecord -v speed=2 dev=acd0 blank=fast gives this error Open by devname not supported on this OS. What device am i to use? cdrecord wants to see your ATA

Re: how to use cdrecord

2010-03-14 Thread Roland Smith
On Sun, Mar 14, 2010 at 11:47:35AM +0800, Aiza wrote: Chris Hill wrote: On Sun, 14 Mar 2010, Aiza wrote: [snip] tried cdrecord -v speed=2 dev=acd0 blank=fast gives this error Open by devname not supported on this OS. What device am i to use? cdrecord wants to see your ATA

Re: how to use cdrecord

2010-03-14 Thread Aiza
Erik Trulsson wrote: On Sun, Mar 14, 2010 at 11:47:35AM +0800, Aiza wrote: Chris Hill wrote: On Sun, 14 Mar 2010, Aiza wrote: [snip] tried cdrecord -v speed=2 dev=acd0 blank=fast gives this error Open by devname not supported on this OS. What device am i to use? cdrecord wants to see your

Re: how to use cdrecord

2010-03-14 Thread Polytropon
On Sun, 14 Mar 2010 20:48:22 +0800, Aiza aiz...@comclark.com wrote: No I do not. how do i do this? If you don't want to compile it into your kernel, load it manually: # kldload atapicam You can automate it using the appropriate line in /boot/loader.conf, I think it's atapicam_load=YES Then

Re: how to use cdrecord

2010-03-14 Thread Jerry
On Sun, 14 Mar 2010 20:48:22 +0800 Aiza Aiza aiz...@comclark.com articulated: Erik Trulsson wrote: On Sun, Mar 14, 2010 at 11:47:35AM +0800, Aiza wrote: Chris Hill wrote: On Sun, 14 Mar 2010, Aiza wrote: tried cdrecord -v speed=2 dev=acd0 blank=fast gives this error Open by devname not

Re: how to use cdrecord

2010-03-14 Thread Programmer In Training
On 03/14/10 08:17, Jerry wrote: snip Add this to your /usr/src/sys/i386/conf/GENERIC file: (or what ever you have named it) device atapicam You then have to rebuild your kernel. You would probably be best served by reading up on how to update FreeBSD. Starting at this URL would

Re: how to use cdrecord

2010-03-14 Thread Al Plant
Polytropon wrote: On Sun, 14 Mar 2010 20:48:22 +0800, Aiza aiz...@comclark.com wrote: No I do not. how do i do this? If you don't want to compile it into your kernel, load it manually: # kldload atapicam You can automate it using the appropriate line in /boot/loader.conf, I think it's

Re: how to use cdrecord

2010-03-14 Thread Polytropon
An addition: On Sat, 13 Mar 2010 21:46:17 -0600, Programmer In Training p...@joseph-a-nagy-jr.us wrote: [r...@heaven]dmesg -a | grep acd acd0: DMA limited to UDMA33, controller found non-ATA66 cable acd0: DVDR HP DVD Writer 1040r/MH21 at ata1-master UDMA33 Thoughts? You're using a 40-pin

how to use cdrecord

2010-03-13 Thread Aiza
Been using burn for blanking and burning iso files to cd. Now i have need to use mkisofs so though I would try cdrecord to blank cd and write iso to cd. dmesg -a |grep acd gives this acd0: CDRW Hewlett-Packard CD-Writer Plus 9500/1.0e at ata1-master UMDA33 tried cdrecord -v speed=2 dev=acd0

Re: how to use cdrecord

2010-03-13 Thread Chris Hill
On Sun, 14 Mar 2010, Aiza wrote: [snip] tried cdrecord -v speed=2 dev=acd0 blank=fast gives this error Open by devname not supported on this OS. What device am i to use? cdrecord wants to see your ATA burner as a SCSI device, so you'd use cdrecord dev=1,0,0 ... The numbers after dev=

Re: how to use cdrecord

2010-03-13 Thread Programmer In Training
On 03/13/10 21:35, Chris Hill wrote: On Sun, 14 Mar 2010, Aiza wrote: [snip] tried cdrecord -v speed=2 dev=acd0 blank=fast gives this error Open by devname not supported on this OS. What device am i to use? cdrecord wants to see your ATA burner as a SCSI device, so you'd use cdrecord

Re: how to use cdrecord

2010-03-13 Thread Aiza
Chris Hill wrote: On Sun, 14 Mar 2010, Aiza wrote: [snip] tried cdrecord -v speed=2 dev=acd0 blank=fast gives this error Open by devname not supported on this OS. What device am i to use? cdrecord wants to see your ATA burner as a SCSI device, so you'd use cdrecord dev=1,0,0 ... The