RHEL: Rebuilding the initial ramdisk image

RHEL: Rebuilding the initial ramdisk image

# Tested on RHEL 5, 6 & 7

# Sometimes it may be necessary to rebuild the initial ramdisk (also known as initrd or
# initramfs) to include new kernel modules, files, etc.


#
RHEL 3, 4 & 5: Rebuilding the initrd
# ------------------------------------------------------------------------------------------

cp /boot/initrd-$(uname -r).img /boot/initrd-$(uname -r).img.bak

mkinitrd -f -v /boot/initrd-$(uname -r).img $(uname -r)

# If we are in a kernel version different to the initrd we are building we must specify
# the full kernel version, without architecture:

mkinitrd -f -v /boot/initrd-2.6.18-348.2.1.el5.img 2.6.18-348.2.1.el5



#
RHEL 6 & 7: Rebuilding the initramfs
# ------------------------------------------------------------------------------------------

cp /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bak

dracut -f

# If we are in a kernel version different to the initrd we are building we must specify
# the full kernel version, including architecture:

dracut -f /boot/initramfs-2.6.32-220.7.1.el6.x86_64.img 2.6.32-220.7.1.el6.x86_64


# *** Consider adding a new grub/grub2 entry pointing to the initial ramdisk image, that
#     will allow you to choose the old version at boot time without restoring the backup
5 (1)
Article Rating (1 Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Open SSL HowTo: Decode SSL Certificate
Viewed 6597 times since Mon, Feb 18, 2019
haproxy linux
Viewed 3021 times since Sun, Dec 6, 2020
Secure Remote Logging to Central Log Server Using RSYSLOG on CentOS 6 / CentOS 7 and stunnel
Viewed 4741 times since Sun, Dec 6, 2020
socat: Linux / UNIX TCP Port Forwarder
Viewed 10279 times since Tue, Aug 6, 2019
awk printf
Viewed 16241 times since Wed, Aug 19, 2020
Fix rpmdb: Thread died in Berkeley DB library
Viewed 21766 times since Fri, Feb 14, 2020
RHCS6: Extend an existing Logical Volume / GFS2 filesystem
Viewed 3836 times since Sun, Jun 3, 2018
www.unixarena.com
Viewed 2889 times since Fri, Jul 27, 2018
List usernames instead of uids with the ps command for long usernames
Viewed 2961 times since Wed, Jul 25, 2018
RHEL: Retrieve and generate a unique SCSI identifier
Viewed 3824 times since Sat, Jun 2, 2018