LoginSignup
2
3

More than 5 years have passed since last update.

Linuxカーネルアップデートメモ

Posted at

カーネルアップデートしたい時のメモ

32bitならi386のを代わりにダウンロード
http://kernel.ubuntu.com/~kernel-ppa/mainline/

$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16.7-utopic/linux-headers-3.16.7-031607_3.16.7-031607.201410301735_all.deb

$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16.7-utopic/linux-headers-3.16.7-031607-generic_3.16.7-031607.201410301735_amd64.deb

$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16.7-utopic/linux-image-3.16.7-031607-generic_3.16.7-031607.201410301735_amd64.deb

$ sudo dpkg -i linux-headers-3.16.7*.deb linux-image-3.16.7*.deb

再起動、これでアップデート完了

動作が正常でなかった場合は以前のカーネル(Grub -> Advanced -> 以前のカーネルを選択)で起動して
以下のコマンドでカーネル削除

$ sudo apt-get remove 'linux-headers-3.16.7*' 'linux-image-3.16.7*'

最後にgrub menuのアップデート

$ sudo update-grub
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3