Posted On January 12, 2021

Linux: ‘Initramfs Unpacking Failed’ Error Upon Booting

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux: ‘Initramfs Unpacking Failed’ Error Upon Booting
Error:
 initramfs unpacking failed: Decoding failed
Resolution:
sudo sed -i 's/COMPRESS=lz4/COMPRESS=gzip/g' /etc/initramfs-tools/initramfs.conf
sudo update-initramfs -u
# reboot # restart the machine when ready

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Set Automatic Updates for CentOS & Redhat

Easy. yum -y install yum-cron vimvim /etc/yum/yum-cron.conf----------apply_updates = yes----------systemctl start yum-cron.service

How to Remove Apps in CentOS/Redhat

Check the repo directory: [root@localhost ~]# ls /etc/yum.repos.d CentOS-Base.repo CentOS-Sources.repo CentOS-CR.repo CentOS-Vault.repo CentOS-Debuginfo.repo docker-ce.repo CentOS-fasttrack.repo…

Ubuntu 20.04: Setting Static IP Address on an Interface

Short Version # Configure networking sudo vim /etc/netplan/*.yaml ### Sample content ### network: version: 2…