Make Bootable USB Drive

Make Bootable USB Drive with RHEL 6.3

Copy all files for image to a directory, RHEL63KS.

Make the iso image file by typing the following command:

mkisofs -o boot.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -R -J -V RHEL63KS -T ./RHEL63KS

This will create a file called boot.iso. Rename this file, RHEL63KS.iso.

Insert the USB stick and type dmesg to see where the drive is mounted.

usb-storage: waiting for device to settle before scanning
Vendor: SanDisk Model: Cruzer Rev: 1.27
Type: Direct-Access ANSI SCSI revision: 06
SCSI device sdb: 62530624 512-byte hdwr sectors (32016 MB)

Drive is at sdb. Unmount the USB drive and then type the following comand to copy the iso image to the USB stick:

dd if=/root/Desktop/RHEL63KS.iso of=/dev/sdb bs=512k

This will take several minutes and there will be no progress indication. When it is done you can remove the USB drive.

Similar Posts

  • Installing Nvidia driver in Ubuntu 22.04

    sudo apt update sudo apt-get remove ‘^nvidia’ sudo apt autoremove sudo apt install nvidia-driver-450 sudo reboot After you have installed the nvidia-driver-450 graphics driver in Ubuntu 20.04 it may be updated from nvidia-driver-450 to nvidia-driver-460 by the normal software update activity. As an alternative to step 4 you can let the ubuntu-drivers program automatically select the proprietary…

  • Mount NTFS on RHEL

    ElRepo repository has kmod-fuse package that does not need dkms system. Since kmod installation uses module aliases (something like symlinks on filesystems), it works on all installed and future kernels without the need to recompile/install even automatic one with dkms. Get started Import the public key:rpm –import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org Detailed info on the GPG key used by the…

  • Authentication Error with VNC

    Issue User is reciving a GUI pop-up messages that says the following, and asks for the root password at login: When logging into a VNC session as user the following message is received: Environment Red Hat Enterprise Linux 6 gnome-packagekit, several versions  Resolution Solution 1: Ensure that the system is properly registered with RHN/Satellite (Re)register…

  • How to mount Windows share on Red Hat Enterprise Linux system using CIFS?

    Solution Verified – Updated April 4 2022 at 8:28 PM – Environment Red Hat Enterprise Linux 8 Red Hat Enterprise Linux 7 Red Hat Enterprise Linux 6 Red Hat Enterprise Linux 5 Issue How can Windows shares be mounted on Red Hat Enterprise Linux? Resolution To run the following commands, you need to install cifs-utils…

  • RHEL 6 NFS

    Ensuring NFS Services are running on RHEL 6 The first task is to verify that the NFS services are installed and running on your RHEL 6 system. This can be achieved either from the command line, or using the graphical services tool. Begin by confirming that the NFS service is installed by running the following command from a…

  • Mount Windows Share on RHEL

    In CLI    mount -t cifs //ntserver/dir -o username=user,password=pass /mnt/ntserver    In /etc/fstab    //ntserver/dir   /mnt/ntserver   cifs   credentials=/root/.smbpasswd,file_mode=0777,dir_mode=0777   0   0 Then create a file /root/.smbpasswd  with permissions set to 600    username=user    password=pass In /etc/hosts add IP address of ntserver.