i get this error by running: "sudo update-initramfs -u"
update-initramfs: Generating /boot/initrd.img-5.0.0-37-generic
W: Possible missing firmware /lib/firmware/i915/icl_dmc_ver1_07.bin for module i915
I: The initramfs will attempt to resume from /dev/sda2
I: (UUID=9cf453b8-6c3d-45b6-9485-6473494bb6ad)
I: Set the RESUME variable to override this.can someone help me with this?
1 Answer
Missing firmware is in package linux-firmware.
You can get it with
sudo apt install linux-firmwarefor the second part, I know only how it works with an swap partition, not with a swapfile
lsblk -f | grep swapso you can found if you have a swap partition.
sudo nano /etc/initramfs-tools/conf.d/resumethen add the uuid there in this manner.
RESUME=UUID=your uuidbesides, it is only a given Info not an error.
sudo update-initramfs -u -k $(uname -r)Will update the initrd from your current running kernel.