In Linux you can create ISO image file from CDROM/DVD using online command. If you haven’t ever tried converting CDROM into ISO file in Linux then you must check this out. There are various advantage of having an ISO file, imaging you have one Software CD to run installation on several servers you probably have to go through the manual process of ejecting CD-ROM from one server to mount the CD on rest of the servers.
So you get the point how useful it is to have an ISO image, all you have to do is copy the ISO file on rest of the servers or you can create NFS export for that ISO file, data read will be faster if you can mount the ISO image locally to perform installation compared to CDROM drive.
How to create ISO image file from CDROM in Linux:
1. Insert the CD onto your local Linux server CDROM drive.
Make sure cd is non mounted, use the mount command to check if CDÂ is in mount or unmount state:
| #mount |
if you see cd is mounted then go ahead and unmount the cd on your Linux machine using unmount command
| #unmount /dev/cdrom |
Depending upon what kind of media you have you might have to try these commands for DVD or CDROM:
| #unmount /dev/dvd for DVD media #unmount /dev/scd0 for SCSI DVD/CD |
2. Create CDROM/DVD ISO image with dd command in linux, dd stands for disk to disk copy
| #dd if=/dev/dvd of=dvd.iso —> for dvd #dd if=/dev/cdrom of=cd.iso —>for cdrom #dd if=/dev/scd0 of=cd.iso —>if cdrom is scsi |
You can also use mkisofs linux command to create an ISO of directories or backup directories and files on CD/DVD. To make an ISO from files located on your hard drive, create a directory to store the files you want. Then use the mkisofs command as listed in example below:
| #mkisofs -o /tmp/cd.iso /local/oracle11i |
News Tags:
- ,linux dev files dvd,Linux make iso from DVD,create iso from dvd linux,how tomake scsi dvd,howto create vmware cdrom iso,I want see the image on Linux by DVD on cdrom,inset cdrom with multi files iso in vware,linux cdrom iso to dvd,linux create iso from dvd,backup xbox 360 dvd using dd linux,linux dvd to file,linux make iso file,linux shell cmd copy dvd to iso file,make an iso file mkisofs from cd,make iso from dvd linux,making xbox 360 iso with dd,mkisofs backup xgd3,how to store dvd as iso file in linux,how to make iso shell linux,how to make iso from a cd in linux,build iso xbox 360 linux,cdrom linux command,centos create iso dd,converting dvd to iso file using dd in RHEL5,copy dvd to iso linux,create image file from files linux,create image file from files/folders linux,create iso dd several files,create iso esx cdrom,create iso file from cdrom in linux
{ 1 comment… read it below or add one }
If you want to create ISO file from DVD in Mac OS X,I share you below website:
http://www.gleez.com/board/tech-corner/tips-tricks/how-create-iso-image-file-dvd-mac-os