Contents
How to Burn an .iso image to a CD/DVD
Microsoft Windows 7 users:
Microsoft Windows 2000/XP/Vista users:

MacOS users:

Linux users (teminal):
- To identify CD ROM devices type:
wodim –devices (wodim was formely known as cdrecord)

- Replace /dev/scd0 of the picture above with your CD recorder and type:
wodim dev=/dev/scd0 -v -data downloaded_file.iso
How to Burn a .raw image to a USB
Microsoft Windows users:
-
Download and install ImageWriter
-
Plug the USB drive in one of computer's USB ports
-
Open ImageWriter and select the USB disk from the list at the bottom

-
Click on the “Select” button and select the file you have downloaded then press “Copy”
-
If you can't see the file, enter “*.*” in the “File name” field and press “Open” to see all files, then select the file and press “Open” again

Linux users (terminal) – USB:
- Plug the USB drive in one of computer's USB ports
- To identify USB disk's device name type:
ls -l /dev/disk/by-id/*usb*

umount /dev/sdb
- to write the USB disk (must be root), type:
dd if=/path/to/file/downloaded of=/dev/sdb
WARNING: Make sure you replace “sdb” of the example above with the appropriate drive. dd will erase all data of the device selected!
|