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

Linux Notes Dump (From 100 Years Ago)

1) LinuxFix Flash Firefox Freezingsudo mkdir /etc/adobeecho "OverridePGUValidation=true" >~/mms.cfgsudo mv ~/mms.cfg /etc/adobe/sudo apt-get install flashplugin-nonfreeInstall…

HAProxy Example for SSH & OpenVNP forwarding

# Source: https://limbenjamin.com/articles/running-https-ssh-vpn-on-port-443.html   global tune.ssl.default-dh-param 2048   defaults timeout connect 5000 timeout client 50000 timeout…

How to Check System Temperature on Ubuntu 21.04

# Install sensors sudo apt update -y sudo apt install lm-sensors hddtemp -y # Setup…