우분투 14.04에서 커널 4.2로 업그레이드 하기.
우분투 14.04를 설치하면 기본적으로 커널 3.19가 설치되어 있다.
최신 하드웨어를 가진 머신이라면 커널 4.2로 업그레이드하는 것이 유리하다.
어떤 무선랜카드는 드라이버가 아예 커널 3.19이상은 로딩도 안된다.
설치하는 방법은 아래와 같다.
일단 현재 커널 버전은 아래와 같다.
simon@simon-server:~$ uname -a
Linux simon-server 3.19.0-25-generic #26~14.04.1-Ubuntu SMP Fri Jul 24 21:16:20 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
linux-image-4.2.0-27-generic -> 진짜 커널 바이너리
linux-image-extra-4.2.0-27-generic -> 각종 동적 디바이스 드라이버와 같은 모듈
linux-headers-4.2.0-27-generic -> /usr/src에 저장되는 커널 소스, 모듈 컴파일에 필수.
simon@simon-server:~$ sudo apt-get install linux-image-4.2.0-27-generic linux-image-extra-4.2.0-27-generic linux-headers-4.2.0-27-generic
.....
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.2.0-27-generic
Found initrd image: /boot/initrd.img-4.2.0-27-generic
Found linux image: /boot/vmlinuz-3.19.0-25-generic
Found initrd image: /boot/initrd.img-3.19.0-25-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
Found Windows 7 (loader) on /dev/sdb1
done
simon@simon-server:~$ uname -a
Linux simon-server 4.2.0-27-generic #32~14.04.1-Ubuntu SMP Fri Jan 22 15:32:26 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux