12.2. Preparing for a Hard Drive Installation
Note
Hard drive installations only work from ext2, ext3, ext4, or FAT file systems. You cannot use a hard drives formatted for any other file system as an installation source for Red Hat Enterprise Linux.
To check the file system of a hard drive partition on a Windows operating system, use the Disk Management tool. To check the file system of a hard drive partition on a Linux operating system, use the fdisk tool.
Important
You cannot use ISO files on partitions controlled by LVM (Logical Volume Management).
Use this option to install Red Hat Enterprise Linux on systems without a DVD drive or network connection.
Hard drive installations use the following files:
- an ISO image of the installation DVD. An ISO image is a file that contains an exact copy of the content of a DVD.
- an
install.imgfile extracted from the ISO image. - optionally, a
product.imgfile extracted from the ISO image.
With these files present on a hard drive, you can choose as the installation source when you boot the installation program (refer to Section 15.3, “Installation Method”).
Ensure that you have boot media available on CD, DVD, or a USB storage device such as a flash drive.
To prepare a hard drive as an installation source, follow these steps:
- Obtain an ISO image of the Red Hat Enterprise Linux installation DVD (refer to Chapter 1, Obtaining Red Hat Enterprise Linux). Alternatively, if you have the DVD on physical media, you can create an image of it with the following command on a Linux system:
dd if=/dev/dvd of=/path_to_image/name_of_image.iso
dd if=/dev/dvd of=/path_to_image/name_of_image.isoCopy to Clipboard Copied! Toggle word wrap Toggle overflow where dvd is your DVD drive device, name_of_image is the name you give to the resulting ISO image file, and path_to_image is the path to the location on your system where the resulting ISO image will be stored. - Transfer the ISO image to the hard drive.The ISO image must be located on a hard drive that is either internal to the computer on which you will install Red Hat Enterprise Linux, or on a hard drive that is attached to that computer by USB.
- Use a SHA256 checksum program to verify that the ISO image that you copied is intact. Many SHA256 checksum programs are available for various operating systems. On a Linux system, run:
sha256sum name_of_image.iso
$ sha256sum name_of_image.isoCopy to Clipboard Copied! Toggle word wrap Toggle overflow where name_of_image is the name of the ISO image file. The SHA256 checksum program displays a string of 64 characters called a hash. Compare this hash to the hash displayed for this particular image on the Downloads page in the Red Hat Customer Portal (refer to Chapter 1, Obtaining Red Hat Enterprise Linux). The two hashes should be identical. - Copy the
images/directory from inside the ISO image to the same directory in which you stored the ISO image file itself. Enter the following commands:mount -t iso9660 /path_to_image/name_of_image.iso /mount_point -o loop,ro cp -pr /mount_point/images /publicly_available_directory/ umount /mount_point
mount -t iso9660 /path_to_image/name_of_image.iso /mount_point -o loop,ro cp -pr /mount_point/images /publicly_available_directory/ umount /mount_pointCopy to Clipboard Copied! Toggle word wrap Toggle overflow wherepath_to_imageis the path to the ISO image file,name_of_imageis the name of the ISO image file, andmount_pointis a mount point on which to mount the image while you copy files from the image. For example:mount -t iso9660 /var/isos/RHEL6.iso /mnt/tmp -o loop,ro cp -pr /mnt/tmp/images /var/isos/ umount /mnt/tmp
mount -t iso9660 /var/isos/RHEL6.iso /mnt/tmp -o loop,ro cp -pr /mnt/tmp/images /var/isos/ umount /mnt/tmpCopy to Clipboard Copied! Toggle word wrap Toggle overflow The ISO image file and animages/directory are now present, side-by-side, in the same directory. - Verify that the
images/directory contains at least theinstall.imgfile, without which installation cannot proceed. Optionally, theimages/directory should contain theproduct.imgfile, without which only the packages for a Minimal installation will be available during the package group selection stage (refer to Section 9.17, “Package Group Selection”).Important
install.imgandproduct.imgmust be the only files in theimages/directory.
Note
anaconda has the ability to test the integrity of the installation media. It works with the DVD, hard drive ISO, and NFS ISO installation methods. We recommend that you test all installation media before starting the installation process, and before reporting any installation-related bugs (many of the bugs reported are actually due to improperly-burned DVDs). To use this test, type the following command at the
boot: prompt:
linux mediacheck
linux mediacheck