Why is update-initramfs missing in 8.9? I can’t find it anywhere, cannot install it.
~# cat /etc/os-release | head -2
NAME=“Rocky Linux”
VERSION=“8.9 (Green Obsidian)”
update-initramfs
bash: update-initramfs: command not found…
Why is update-initramfs missing in 8.9? I can’t find it anywhere, cannot install it.
~# cat /etc/os-release | head -2
NAME=“Rocky Linux”
VERSION=“8.9 (Green Obsidian)”
bash: update-initramfs: command not found…
update-initramfs
is a debian/ubuntu thing from an “initramfs-tools” package. It is simply a wrapper.
To rebuild your initramfs of the current running kernel:
# take a backup
% cp /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-$(date +%m-%d-%H%M%S).img
# regenerate
% dracut -f /boot/initramfs-$(uname -r).img $(uname -r)
Understood, makes sense. I did that.
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.