How to install Kernel 4.6 on Ubuntu 16.04 Xenial

Today I upgraded my kernel to 4.6 and I have to admit I can really few a small improvement in the performance this time, possibly due to the fact I’m using ext4. Here is the release announcement. Here is the full list of features that landed!

 Kernel_4.6

uname -a

Linux ubuntumate 4.6.0-040600rc5-generic #201604242031 SMP Mon Apr 25 00:34:15 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

 

If you don’t believe me here are some benchmarks

And here is how you can get it installed in your system if you also want to try it:

mkdir kernel

cd kernel

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.6-yakkety/linux-headers-4.6.0-040600_4.6.0-040600.201606100558_all.deb

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.6-yakkety/linux-headers-4.6.0-040600-generic_4.6.0-040600.201606100558_amd64.deb

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.6-yakkety/linux-image-4.6.0-040600-generic_4.6.0-040600.201606100558_amd64.deb

sudo dpkg -i *.deb

Cheers!

Sources:

How to Install Linux Kernel 4.6 in Ubuntu 16.04

 

 

How to install PostgreSQL 9.6 on Ubuntu/Debian/Linux Mint

Create a file at /etc/apt/sources.list.d/postgresql.list with the following command:

sudo vim /etc/apt/sources.list.d/postgresql.list

Add the following line according to your distribution (xenial, utopic, trusty, jessie, wheezy and etc):

deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main

Save it and Close it! Now you just have to do:

wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install postgresql-9.6

Enjoy it! 😀