2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linuxカーネルのコンパイル (Ubuntu 20.04 で Linux 5.x)

Last updated at Posted at 2020-06-01

Ubuntu 20.04 LTS (Server) には初期設定で Linuxカーネル 5.4.0 が入っている。
これ(Ubuntu 20.04)に自分でコンパイルしたカーネルを入れてみる。
カーネルは kernel.orgが配布しているバニラカーネルを使用する。

#カーネルコンパイルの前に必要なツールをインストール

sudo apt -y install make gcc flex bison libssl-dev

#もともと入っている Linux 5.4.0 をインストールしてみる

wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz
tar xfJ linux-5.4.tar.xz
cd linux-5.4/
cp /boot/config-5.4.0-33-generic ./.config
yes "" | make oldconfig
make -j8 bzImage modules
sudo make modules_install install

#現時点で最新の Linux 5.6.15 をインストールしてみる

wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.6.15.tar.xz
tar xfJ linux-5.6.15.tar.xz
cd linux-5.6.15/
cp /boot/config-5.4.0-33-generic ./.config
yes "" | make oldconfig
make -j8 bzImage modules
sudo make modules_install install

2
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?