Messages in this thread |  | | Date | Fri, 6 Oct 2000 00:09:38 -0700 (PDT) | From | Andre Hedrick <> | Subject | Re: failure to burn CDs under 2.4.0-test9 |
| |
On Thu, 5 Oct 2000, J. Dow wrote:
> For that matter Andre a 4 speed HP can certainly burn at 4 speed except > that cdrecord and the OS conspire to prevent this through a mathematical > error. It's rather a tad frustrating.
Explain, please
#!/bin/sh # # mkisofs -r -o cd_image -R -x $(object_path) $(target_path) ISO9660_PATH=/home/iso9660
# mkisofs -r -o $ISO9660_PATH/cd_image -R -x "$1" "$2"
#!/bin/sh # checkit -- cd-rw loop mount and check # # mkisofs -r -o cd_image -R -x $(object_path) $(target_path) # cdrecord -v speed=4 dev=0,0,0 -eject -data cd_image ISO9660_PATH=/home/iso9660 # # cdrecord -v speed=4 dev=0,0,0 -eject -data $ISO9660_PATH/cd_image mount -t iso9660 -o rw,loop=/dev/loop0 $ISO9660_PATH/cd_image /cdrom
#!/bin/sh # burnit -- cd-rw write to media # # mkisofs -r -o cd_image -R -x $(object_path) $(target_path) # cdrecord -v speed=4 dev=0,0,0 -eject -data cd_image ISO9660_PATH=/home/iso9660 # cdrecord -v speed=4 dev=0,0,0 -eject -data $ISO9660_PATH/cd_image
This is my script series for a 4X burn
Cheers,
Andre Hedrick The Linux ATA/IDE guy
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |