ibrokeit

fix for bug #1743094

Mar 13th, 2018
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.60 KB | None | 0 0
  1. # relevant to
  2. #     https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1743094
  3. # please see also
  4. #     https://wiki.ubuntu.com/Kernel/MainlineBuilds
  5. # for 64-bit Ubuntu installs; if 32-bit replace _amd64 with _i386
  6.  
  7. wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.15.9/linux-headers-4.15.9-041509_4.15.9-041509.201803111231_all.deb
  8. wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.15.9/linux-headers-4.15.9-041509-generic_4.15.9-041509.201803111231_amd64.deb
  9. wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.15.9/linux-image-4.15.9-041509-generic_4.15.9-041509.201803111231_amd64.deb
  10. wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.15.9/CHECKSUMS
  11. wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.15.9/CHECKSUMS.gpg
  12. gpg --keyserver hkps://pgp.mit.edu --recv-key "60AA7B6F30434AE68E569963E50C6A0917C622B0"
  13. gpg --verify CHECKSUMS.gpg CHECKSUMS
  14.  
  15. # output should read:
  16.  
  17. # gpg: Signature made Sun 11 Mar 2018 01:00:01 PM CDT
  18. # gpg:                using RSA key 0xE50C6A0917C622B0
  19. # gpg: Good signature from "Kernel PPA <kernel-ppa@canonical.com>"
  20. # Primary key fingerprint: 60AA 7B6F 3043 4AE6 8E56  9963 E50C 6A09 17C6 22B0
  21.  
  22. # if that checks out then
  23. for n in *.deb; do cat CHECKSUMS | grep "$(sha256sum ""$n"")"; done
  24. # make sure you see all 3 deb files listed. if not re-download
  25. # finally:
  26. sudo dpkg -i linux-headers-4.15.9-041509_4.15.9-041509.201803111231_all.deb
  27. sudo dpkg -i linux-headers-4.15.9-041509-generic_4.15.9-041509.201803111231_amd64.deb
  28. sudo dpkg -i linux-image-4.15.9-041509-generic_4.15.9-041509.201803111231_amd64.deb
  29.  
  30. # reboot and should be OK to hibernate now
Add Comment
Please, Sign In to add comment