How can I create a boot up CD with Linux?

Discussion in 'Technical' started by dealrocker, Apr 30, 2009.

  1. dealrocker

    dealrocker New Member

    I have downloaded Linux few days back and want to create a boot up CD. But I can't copy the files to CD after downloading them (downloaded into a computer running Vista)

    Just wondering how to create a boot up CD without a machine running Linux??

    Help please.
     
  2. falko

    falko Super Moderator Howtoforge Staff

    You must burn the ISO file as an image (not data CD or anything else) to a CD or DVD. Your burning application should support this.
     
  3. tusshar

    tusshar New Member

    Step # 1: Copy boot.iso to /tmp

    Type the following command,
    # cp boot.iso /tmp
    Unmount cdrom
    # cd; eject
    Step # 2: Insert blank CD R/RW media

    Find device name:
    # cdrecord -scanbus
    Write /tmp/boot.iso to blank cd, enter:
    # cdrecord -v -dao dev=1,0,0 /tmp/boot.iso
     

Share This Page