Results 1 to 3 of 3
hi,
i've managed to burn an audio cd with the following command
cdrecord -v -pad speed=1 dev=1,0,0 -dao -audio -swab *.wav
but i would like to be able to do ...
- 04-21-2008 #1Linux Newbie
- Join Date
- Jul 2005
- Location
- Australia (Down Under)
- Posts
- 141
Command Line Recording (cdrecord)
hi,
i've managed to burn an audio cd with the following command
but i would like to be able to do a data disk. like photos and backupscdrecord -v -pad speed=1 dev=1,0,0 -dao -audio -swab *.wav
any help would be much appreciated
- 04-21-2008 #2
how about creating an iso
if you want to check the iso and make sure you don't burn a coasterCode:mkisofs -o test.iso -Jrv -V test_disk /your/folder/
and then burn the isoCode:mount -t iso9660 -o ro,loop=/dev/loop0 test.iso /mount_directory
Code:cdrecord -v -eject speed=8 dev=0,1,0 test.iso
man mkisofs
and
man cdrecord
for other options.
- 04-22-2008 #3Linux Newbie
- Join Date
- Jul 2005
- Location
- Australia (Down Under)
- Posts
- 141
thanks. i will give it a shot today


Reply With Quote
