Tag: iso

A Shell Scirpt to Mount ISO files

A Shell Scirpt to Mount ISO files – call it using the command moustiso.sh ImageFile.iso. You need a folder called…

Backup HDD To Remote Host

Make a backup of a local hard disk on remote host via ssh dd bs=1M if=/dev/hda | gzip | ssh…

Backup Entire Harddrive to an Image

Backup content of the harddrive to a file. Creates an image of the drive dd if=/dev/sda of=/tmp/sda.iso

Burn Compressed ISO Image

Burn a compressed ISO image gzip -dc cd_iso.gz | cdrecord dev=/dev/cdrom

Convert Bin/Cue Images to ISO Image using Linux Command

You can use this command to convert a Bin/Cue image to an ISO image in a linux system. You may…

Burn an ISO image

Burn an ISO image cdrecord -v dev=/dev/cdrom cd.iso

Create ISO Image of a Folder

Create an iso image of a directory mkisofs -J -allow-leading-dots -R -V “Label CD” -iso-level 4 -o ./cd.iso data_cd

Create a Folder’s ISO image

How to make an ISO image from contents of a directory? mkisofs -V label-name -r directory-name > iso-image.iso [tags]iso,image,folder,linux,mkisofs[/tags]

Create CD Image

These commands can be used to create an image of a CD/DVD/HDD. You can also use some GUI tool like…

Command to make a CD/DVD ISO Image in Linux with dd

This command can be used to create an image of a CD/DVD/HDD. You can also use some GUI tool like…