Comments on: How to Install Latest Kernel 5.0 in Ubuntu https://www.tecmint.com/upgrade-kernel-in-ubuntu/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Sun, 30 May 2021 02:17:54 +0000 hourly 1 By: paulubuntu https://www.tecmint.com/upgrade-kernel-in-ubuntu/comment-page-1/#comment-1513050 Sun, 30 May 2021 02:17:54 +0000 http://www.tecmint.com/?p=24878#comment-1513050 There is problems with amd64/…5.11.17(and above)….generic and dependence libc6.
https://answers.launchpad.net/umkl/+question/696873

]]>
By: Satya https://www.tecmint.com/upgrade-kernel-in-ubuntu/comment-page-1/#comment-1310720 Tue, 07 Jan 2020 10:23:41 +0000 http://www.tecmint.com/?p=24878#comment-1310720 It works for me.

]]>
By: Johnathan https://www.tecmint.com/upgrade-kernel-in-ubuntu/comment-page-1/#comment-1099699 Thu, 07 Feb 2019 08:19:43 +0000 http://www.tecmint.com/?p=24878#comment-1099699 In reply to Vitalii.

This looks very dangerous. You add untrusted repository and then install software which can be tampered with.

]]>
By: Vitalii https://www.tecmint.com/upgrade-kernel-in-ubuntu/comment-page-1/#comment-1095891 Wed, 16 Jan 2019 08:53:44 +0000 http://www.tecmint.com/?p=24878#comment-1095891 To install the latest kernel in Ubuntu with Kernel Update Utility as shown.

$ sudo add-apt-repository ppa:teejee2008/ppa
$ sudo apt-get install ukuu

Disable access control with the following command:

$ sudo xhost +
$ sudo ukuu
$ sudo ukuu --install-latest
$ sudo reboot
]]>
By: Josh Hedden https://www.tecmint.com/upgrade-kernel-in-ubuntu/comment-page-1/#comment-1086481 Thu, 27 Dec 2018 05:31:28 +0000 http://www.tecmint.com/?p=24878#comment-1086481 In reply to james.

James, thanks for the post on this because I had to do the exact same thing to fix mine.

I got the same error as yours when I tried installing. I would also like to add that this fixed my driver issues with Ryzen and I now have 1920 x1080 resolution. xandr kept failing when I was trying to manually add my resolution.

Updating the kernel is actually what fixed all of my resolution issues. I am using the Ryzen 2200 GPU for anyone interested in fixing the same issue (I was getting the “failed to get size of gamma for output” when using –newmode for xrandr).

Here is exactly what I ran to get this to work (I am pretty sure these links are only for AMD so if you have intel you have to go to the website and select the ones for your system https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19/.

It seems the article is missing the modules install (You need the Linux headers, Linux image unsigned, and the modules file). This article actually has you install the headers twice which isn’t right. I would still like to say thank you to the person who wrote this blog and many others, it has helped me out more than you could imagine.

$ wget https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.20/linux-headers-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deb
$ wget https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.20/linux-image-unsigned-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deb
$ wget https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.20/linux-modules-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deb
$ sudo dpkg -i *.deb
$ reboot

Hopefully this helps someone else out! Enjoy!!!
Josh

]]>