Results 1 to 2 of 2

Thread: burn a CD in Linux

  1. #1
    Karl Wiedergott is offline Junior Member
    Join Date
    Sep 2009
    Posts
    29
    Rep Power
    0

    Default burn a CD in Linux

    I have a laptop which is working onLinux OS and also Windows machine. Because of virus my system corrupted. Now I have to burn a disc. The data is available in the USB drive. I can copy paste the data in Linux machine but how to burn the same. I have not seen any application in it which supportsdisc burning.

    Any help would be appriciated.

  2. #2
    John Fanwryghte is offline Senior Member
    Join Date
    Apr 2009
    Posts
    100
    Rep Power
    4

    Default

    If you want a burn multi session disc follow the below steps. In the 1st session copy the ISO image to a data CD or make an ISO image burn ISO image with option-multi for cdrecord. The command for the same is -
    Code:
    % cdrecord speed =X dev =X,Y,Z -multi -v -eject -data ./backup.iso
    In the 2nd session, before creating the ISO image, it is required to know 2 parameters.
    Code:
    % cdrecord dev =X, Y, Z -msinfo number1, number2
    Achieving ISO image by indicate two parameters number1, number2 and the device associated with the drive (eg / dev / hdc)
    Code:
    % mkisofs -R -r -J -C number1,number2 -M /dev/hdc -o .
    Burn the ISO image with option-multi session -
    Code:
    % cdrecord speed =X dev =X, Y, Z -multi -v -eject -data .
    For creating ISO image as a second session, third session burn the ISO image without the option-multi -
    Code:
    % cdrecord speed =X dev =X, Y, Z -v -eject -data ./image_2.iso

Similar Threads

  1. Help me to Burn from H.264 to DVD
    By TaylorRyan in forum Optical Drives
    Replies: 1
    Last Post: 09-03-2010, 01:28 PM
  2. Burn WMA to MP3
    By Millerjames in forum Operating System
    Replies: 0
    Last Post: 03-12-2010, 05:20 PM
  3. Help with a PC That Can't Burn CDs
    By DavisMartin in forum Hardware Jargons
    Replies: 0
    Last Post: 12-24-2009, 04:08 PM
  4. How to Burn an AVI to a DVD
    By cherish22 in forum Hardware Jargons
    Replies: 0
    Last Post: 12-11-2009, 05:20 PM
  5. How to burn?
    By Felipe Garabina in forum Optical Drives
    Replies: 1
    Last Post: 08-21-2009, 05:31 AM

Bookmarks

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48