Find the answer to your Linux question:
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 ...
  1. #1
    Linux 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
    cdrecord -v -pad speed=1 dev=1,0,0 -dao -audio -swab *.wav
    but i would like to be able to do a data disk. like photos and backups

    any help would be much appreciated

  2. #2
    Linux Engineer jledhead's Avatar
    Join Date
    Oct 2004
    Location
    North Carolina
    Posts
    1,077
    how about creating an iso
    Code:
    mkisofs -o test.iso -Jrv -V test_disk /your/folder/
    if you want to check the iso and make sure you don't burn a coaster
    Code:
    mount -t iso9660 -o ro,loop=/dev/loop0 test.iso /mount_directory
    and then burn the iso

    Code:
    cdrecord -v -eject speed=8 dev=0,1,0 test.iso

    man mkisofs
    and
    man cdrecord
    for other options.

  3. #3
    Linux Newbie
    Join Date
    Jul 2005
    Location
    Australia (Down Under)
    Posts
    141
    thanks. i will give it a shot today

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •