How to create ISO images from terminal?
How to create CD/DVD ISO image of files/folder from terminal?
How to create CD/DVD ISO image of CD/DVD disk from terminal?
How to burn ISO image file into floppy or CD/DVD disk from terminal?
How to burn ISO image file into floppy or CD/DVD disk from Gnome F7?
How to burn DVD .IMG file to DVD disk from terminal?
How to blank fast and erase files from CD-RW/DVD-RW disk from terminal?
How to mount/unmount ISO image from terminal?
How to create MD5 checksum of ISO image file from terminal?
How to verify MD5 checksum of ISO image file from terminal?
This blog entry assumes these below topics:
a. creation and verification of ISO image files
b. CD/DVD burning of ISO/IMG image files
c. mounting and unmounting of ISO image files
Here you go, straight questions and answers.
How to create ISO images from terminal?
Creating ISO images from terminal begins with the mkisofs and/or dd linux commands.
How to create MD5 checksum of ISO image file from terminal?
# md5sum myISOfile.iso > myISOfile.iso.md5
How to verify MD5 checksum of ISO image file from terminal?# md5sum -c myISOfile.iso.md5
How to create CD/DVD ISO image of files and/or folder from terminal?
For creating ISO image from folder# mkisofs -r -o myisofile.ISO myfolder
For creating ISO image from file# dd if=mybigfile of=myisofile.ISO
or# mkisofs -r -o myisofile.ISO mybigfile
# mkisofs -r -o myisofile.ISO *.mp3
How to create CD/DVD ISO image of CD/DVD disk from terminal?
How to create an ISO copy CD/DVD disk from terminal?
For non-bootable and data ISO image file, just mount the CD/DVD disk first like so# mount /dev/cdrom /mnt/myCDdrive
# mount /dev/dvd /mnt/myDVDdrive
And create the ISO image file from CD disk like so# mkisofs -o myCDiso.ISO /dev/cdrom
And from DVD disk# mkisofs -o myDVDiso.ISO /dev/dvd
An alternative would be done with the below command and without the need of mounting the disk as shown below.
This is also preferrable for creaing bootable CD disk.# dd if=/dev/cdrom of=myCDiso.ISO
And for DVD disk# dd if=/dev/dvd of=myCDiso.ISO
How to burn ISO image file into floppy or CD/DVD disk from terminal?
For floppy# dd if=myfloppyISOfile.ISO of=/dev/floppy
For CD/DVD# dd if=myCDISOfile.ISO of=/dev/cdrom
or
# dd if=myCDISOfile.ISO of=/dev/cdrom-sr0
and for DVD# dd if=myCDISOfile.ISO of=/dev/dvd
How to burn ISO image file into floppy or CD/DVD disk from Gnome F7?
Go to Gnome > Places > CD/DVD creator. Copy and paster files and folder and click Write to Disc
How to burn DVD .IMG file to DVD disk from terminal?# growisofs -Z /dev/dvd=myDVDimagefile.IMG
How to blank fast and erase files from CD-RW/DVD-RW disk from terminal?
This was also mentioned here.
CD-RW# cdrecord dev=/dev/cdrom blank=fast
DVD-RW# cdrecord dev=/dev/dvd blank=fast
How to mount/unmount ISO image from terminal?
To mount CD# mkdir /mnt/cdrom
# mount -t iso9660 -o loop /dev/cdrom /mnt/cdrom
To unmount# umount /mnt/cdrom
You might be interested on using the right click mouse button to open a link in background in a new browser window or separate tab with the below boxes in black.
That's it for now. Thanks!
Related Posts:
Linux CD/DVD Burnind Software - Brasero
Nero Burning Software in Linux
K9Copy - CD/DVD Disk Copier and Burner
Categories
- HowTos (611)
- Linux Devices (39)
- Linux Diggs (620)
- Linux News (1541)
- Linux Videos (24)
Recent Posts
Blog Archive
-
►
2008
(2302)
-
►
October
(140)
- Linus Torvalds on Linux Distributions
- AMD to Spin off Manufacturing Operations
- MySQL cofounder David Axmark leaving Sun
- Mono to contribute back to CLI; Microsoft says it ...
- Monitor your network with GroundWork Monitor Commu...
- The LXF Guide: Write a Perl module
- 8 Best First-person Shooter Games for Linux
- AppDeploy Community Launches Free Windows Installe...
- Ubuntu Tweak - Sneak Peak at Latest Version!
- POS stack targets Linux netbooks
- RIP LinuxWorld
- Firefox extension blocks dangerous Web attack
- Wikia co-founder to speak at linux.conf.au
- Wikia co-founder to speak at linux.conf.au
- Look Ma, No ‘X’
- Look Ma, No ‘X’
- Forget the damn Linux netbooks. Can Windows replac...
- Forget the damn Linux netbooks. Can Windows replac...
- Amarok 2.0 Beta 2 was released
- 6 Years As A Professional Software Developer
- Amarok 2.0 Beta 2 was released
- 6 Years As A Professional Software Developer
- Distribution Release: EnGarde Secure Linux 3.0.21
- Torvalds talks about his brand new blog
- Become a multimedia pro with the Vector Linux Mult...
- Linux Robot - Watch This Space
- Distribution Release: EnGarde Secure Linux 3.0.21
- Torvalds talks about his brand new blog
- Become a multimedia pro with the Vector Linux Mult...
- Linux Robot - Watch This Space
- Linux-Based E-Voting In Brazil
- Is .NET on Linux Finally Ready?
- Linux-Based E-Voting In Brazil
- Multi-core networking stack ported to PowerPC
- Google rev's photo editor for Linux
- Project releases version 2.0 of open source .Net
- One more 2.6.27 prepatch
- Stallman vs. Clouds
- How to Create and Use a Password Reset Disk in Win...
- OpenOffice.org Grows Up
- 45+ Sources and Sets of Photoshop Custom Shapes
- Clean up your filesystems with fslint
- NPX-9000 UMPC is inexpensive but underpowered
- Will Chrome Find a Home With SaaS?
-
►
October
(140)
Saturday, August 25, 2007
ISO creation and CD/DVD burning from terminal
Subscribe to:
Post Comments (Atom)
ILoveTux - howtos and news | About | Contact | TOS | Policy


0 comments:
Post a Comment