how to create cd iso image in linux

5

Click here to load reader

Upload: sarzaminkhan

Post on 19-Jul-2016

15 views

Category:

Documents


2 download

DESCRIPTION

linux

TRANSCRIPT

Page 1: How to Create CD ISO Image in Linux

How To Create CD ISO Image In Linux

Walker News ● About

● Contact

● Search

How To Create CD ISO Image In Linux

Copyright © Walker 22 Sep 2007 17:12

Unlike Windows Vista or XP, Linux doesn’t need to separately

install Nero Burning ROM or CD image writer if you plan to create

an ISO image to backup a CD-ROM.

The standard dd command available in UNIX and Linux

distributions is good enough to do this job!

The dd command used to be a tiny program, which is about 32KB

in Red Hat Enterprise Linux! However, it’s certainly able to create

or dump an ISO image of a CD-ROM that can be burnt into a blank

CD!

You can also mount the ISO image directly in Linux and access the

Custom Search

● Hardware

● Internet

● Software

http://www.walkernews.net/2007/09/22/how-to-create-cd-iso-image-in-linux/ (1 of 5) [8/4/2012 5:50:38 PM]

Page 2: How to Create CD ISO Image in Linux

How To Create CD ISO Image In Linux

content without installing a CD emulator!

How to create a CD ISO image in Linux using the dd

command?

The Linux dd command performs binary data transfer (byte-by-

byte or block-by-block) with adjustable block sizes, from the first

to the last byte of data.

Don’t be scared by a Linux command, it’s really simple to

understand (the dd command syntax) and memorize it (in case

you’ll be tested by your interviewer, boss, etc). For example,

dd if=/dev/cdrom of=/tmp/CDImage.iso

where the if= indicates input file (the CD-ROM content) and of=

parameter is to specify the output file (the ISO image, i.e.

CDImage.iso) that dd command going to write.

In order to improve I/O performance, un-mount the CD-ROM

before executing dd command by preventing random access to the

mounted file system.

To verify if the CD-ROM is mounted or not, execute

http://www.walkernews.net/2007/09/22/how-to-create-cd-iso-image-in-linux/ (2 of 5) [8/4/2012 5:50:38 PM]

Page 3: How to Create CD ISO Image in Linux

How To Create CD ISO Image In Linux

mount

To un-mount the mounted CD-ROM, execute

umount /dev/cdrom

Once the dd command complete successfully, you can execute this

command

eject

to eject the CD-ROM from the drive. The Linux eject command will

automatically un-mount the CD-ROM (if it’s mounted) before

sending eject disc command to the CD-ROM driver.

http://www.walkernews.net/2007/09/22/how-to-create-cd-iso-image-in-linux/ (3 of 5) [8/4/2012 5:50:38 PM]

Page 4: How to Create CD ISO Image in Linux

How To Create CD ISO Image In Linux

Custom Search

● Using Linux od Command To View File In Bit

● How To Create ISO Image In Windows Vista

1. How To Create ISO Image In Windows Vista – Walker News 23-09-07@03:15

[...] any UNIX or Linux distributions, there is a standard dd program to create an ISO image of CD-ROM. However, you’ve to rely on third party ISO image writers [...]

2. How To Create An ISO Image Of Directory / Filesystem In Linux – Walker News 06-07-08@14:27

[...] post related to CD image and Linux system. Do you know there is a simple and efficient Linux command line program to create ISO image of a [...]

3. Using TRK To Enable Vista SP1 Administrator Account And Reset Windows Password – Walker News 07-12-08@17:27

[...] Burn the ISO image file to CD/DVD-ROM and boots it up

http://www.walkernews.net/2007/09/22/how-to-create-cd-iso-image-in-linux/ (4 of 5) [8/4/2012 5:50:38 PM]

Page 5: How to Create CD ISO Image in Linux

How To Create CD ISO Image In Linux

(the easier way to boot up TRK). While the TRK boot menu appears, you [...]

2012 • Privacy Policy

http://www.walkernews.net/2007/09/22/how-to-create-cd-iso-image-in-linux/ (5 of 5) [8/4/2012 5:50:38 PM]