Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Red Hat Enterprise Linux 9 Essentials Book now available.

Purchase a copy of Red Hat Enterprise Linux 9 (RHEL 9) Essentials

Red Hat Enterprise Linux 9 Essentials Print and eBook (PDF) editions contain 34 chapters and 298 pages

Preview Book

23.2. Preparing to Upgrade

Before upgrading the kernel, it is recommended that you take some precautionary steps.
First, ensure that working boot media exists for the system in case a problem occurs. If the boot loader is not configured properly to boot the new kernel, the system cannot be booted into Red Hat Enterprise Linux without working boot media.
USB media often comes in the form of flash devices sometimes called pen drives, thumb disks, or keys, or as an externally-connected hard disk device. Almost all media of this type is formatted as a VFAT file system. You can create bootable USB media on media formatted as ext2, ext3, or VFAT.
You can transfer a distribution image file or a minimal boot media image file to USB media. Make sure that sufficient free space is available on the device. Around 4 GB is required for a distribution DVD image, around 700 MB for a distribution CD image, or around 10 MB for a minimal boot media image.
You must have a copy of the boot.iso file from a Red Hat Enterprise Linux installation DVD, or installation CD-ROM#1, and you need a USB storage device formatted with the VFAT file system and around 16 MB of free space. The following procedure will not affect existing files on the USB storage device unless they have the same path names as the files that you copy onto it. To create USB boot media, perform the following commands as the root user:
  1. Install the SYSLINUX bootloader on the USB storage device:
    ~]# syslinux /dev/sdX1 
    
    ...where sdX is the device name.
  2. Create mount points for boot.iso and the USB storage device:
    ~]# mkdir /mnt/isoboot /mnt/diskboot
    
  3. Mount boot.iso:
    ~]# mount -o loop boot.iso /mnt/isoboot
    
  4. Mount the USB storage device:
    ~]# mount /dev/<sdX1> /mnt/diskboot
    
  5. Copy the ISOLINUX files from the boot.iso to the USB storage device:
    ~]# cp /mnt/isoboot/isolinux/* /mnt/diskboot
    
  6. Use the isolinux.cfg file from boot.iso as the syslinux.cfg file for the USB device:
    ~]# grep -v local /mnt/isoboot/isolinux/isolinux.cfg > /mnt/diskboot/syslinux.cfg
    
  7. Unmount boot.iso and the USB storage device:
    ~]# umount /mnt/isoboot /mnt/diskboot
    
  8. You should reboot the machine with the boot media and verify that you are able to boot with it before continuing.
Alternatively, on systems with a floppy drive, you can create a boot diskette by installing the mkbootdisk package and running the mkbootdisk command as root. Refer to man mkbootdisk man page after installing the package for usage information.
To determine which kernel packages are installed, execute the command yum list installed "kernel-*" at a shell prompt. The output will comprise some or all of the following packages, depending on the system's architecture, and the version numbers may differ:
~]# yum list installed "kernel-*"
kernel.x86_64                   2.6.32-17.el6           installed
kernel-doc.noarch               2.6.32-17.el6           installed
kernel-firmware.noarch          2.6.32-17.el6           installed
kernel-headers.x86_64           2.6.32-17.el6           installed
From the output, determine which packages need to be download for the kernel upgrade. For a single processor system, the only required package is the kernel package. Refer to Section 23.1, “Overview of Kernel Packages” for descriptions of the different packages.

 
 
  Published under the terms of the Creative Commons License Design by Interspire