Procedure 2.1. Making USB Media on Linux

  1. Connect a USB flash drive to the system and execute the dmesg command. A log detailing all recent events will be displayed. At the bottom of this log, you will see a set of messages caused by the USB flash drive you just connected. It will look like a set of lines similar to the following:
    [ 170.171135] sd 5:0:0:0: [sdb] Attached SCSI removable disk
    Note the name of the connected device - in the above example, it is sdb.
  2. Log in as root:
    $ su -
    Provide your root password when prompted.
  3. Make sure that the device is not mounted. First, use the findmnt device command and the device name you found in the earlier steps. For example, if the device name is sdb, use the following command:
    # findmnt /dev/sdb
    If the command displays no output, you can proceed with the next step. However, if the command does provide output, it means that the device was automatically mounted and you must unmount it before proceeding. A sample output will look similar to the following:
    # findmnt /dev/sdb
    TARGET   SOURCE   FSTYPE  OPTIONS
    /mnt/iso /dev/sdb iso9660 ro,relatime
    
    Note the TARGET column. Next, use the umount target command to unmount the device:
    # umount /mnt/iso
  4. Use the dd command to write the installation ISO image directly to the USB device:
    # dd if=/path/to/image.iso of=/dev/device bs=blocksize
    Replace /path/to/image.iso with the full path to the ISO image file you downloaded, device with the device name as reported by the dmesg command earlier, and blocksize with a reasonable block size (for example, 512k) to speed up the writing process. The bs parameter is optional, but it can speed up the process considerably.
    Important
    Make sure to specify the output as the device name (for example, /dev/sda), not as a name of a partition on the device (for example, /dev/sda1).
    For example, if the ISO image is located in /home/testuser/Downloads/rhel-server-7.3x86_64-boot.iso and the detected device name is sdb, the command will look like the following:
    # dd if=/home/testuser/Downloads/rhel-server-7.3x86_64-boot.iso of=/dev/sdb bs=512k
  5. Wait for dd to finish writing the image to the device. Note that no progress bar is displayed; the data transfer is finished when the # prompt appears again. After the prompt is displayed, log out from the root account and unplug the USB drive.
The USB drive is now ready to be used as a boot device. You can continue with Chapter 5, Booting the Installation on AMD64 and Intel 64 Systems on AMD64 and Intel 64 systems or Chapter 10, Booting the Installation on IBM Power Systems on IBM Power Systems servers.