カーネル/削除

From Gentoo Wiki
< Kernel
Jump to:navigation Jump to:search
This page is a translated version of the page Kernel/Removal and the translation is 100% complete.

この記事は、古いカーネルの削除について説明しています。

カーネルのソースの削除

新たなカーネルをインストール後、それが満足に動作しているときには、古いカーネルを削除してもかまいません。古いカーネルのソースを削除するには emerge の --depclean オプション(-cに省略可能)を使用し、(例えば sys-kernel/gentoo-sources の、)すべての旧バージョンを、または、スロット化されたパッケージの不用なバージョンを、削除することができます。

root #emerge --ask --depclean gentoo-sources:xx.yy.zzz

現在稼働中のカーネルのソースが削除されないよう確認してください。(アップグレードの方法は、カーネルアップグレードの記事を参照。)

カーネルのソースを保護する

新たなカーネルソースをmerge後にそのソースに切替える前でも、emerge --depclean を実行してしまうと現在のソースが削除されてしまいます。しかし、現在のソースが必要で(例えば、外部のカーネルモジュールを更新するために)、削除せずに残しておきたいことがあります。よって、その特定のカーネルのバージョンを world ファイルに追加しておくことで --depclean 処理から保護するのは、良い対処法です。

これを行うための方法の例は:

root #emerge --depclean --exclude=sys-kernel/gentoo-sources

これにより、クリーンアップ時にすべてのカーネルソースビルドディレクトリはそのままにされるでしょう。後で、以下で説明する eclean-kernel などのツールを使って片付けることができます。

残ったカーネルの削除

eclean-kernel を使用する

app-admin/eclean-kernel は、古いカーネルの清掃/削除をするための簡単なツールです。ビルドされたカーネルのファイルも、残ったカーネルのいずれも参照しないビルドディレクトリも、削除します。

使用法については、インストールしてから、eclean-kernel --help を確認してください:

user $eclean-kernel --help
usage: eclean-kernel [-h] [-V] [-A] [-l] [-p] [-b BOOTLOADER] [-L LAYOUT] [-r ROOT] [-a] [-d] [-n NUM] [-s SORT_ORDER]
                      [-D] [-M] [--no-bootloader-update] [--no-kernel-install] [-x EXCLUDE]
 
 Remove old kernel versions, keeping either N newest kernels (with -n) or only those which are referenced by a bootloader
 (with -a).
 
 optional arguments:
   -h, --help            show this help message and exit
   -V, --version         show program's version number and exit
 
 action control:
   -A, --ask             Ask before removing each kernel
   -l, --list-kernels    List kernel files and exit
   -p, --pretend         Print the list of kernels to be removed and exit
 
 system configuration:
   -b BOOTLOADER, --bootloader BOOTLOADER
                         Bootloader used (auto, lilo, grub2, grub, yaboot, symlinks)
   -L LAYOUT, --layout LAYOUT
                         Layout used (auto, blspec, std)
   -r ROOT, --root ROOT  Alternate filesystem root to use
 
 kernel selection:
   -a, --all             Remove all kernels unless used by bootloader
   -d, --destructive     Destructive mode: remove kernels even when referenced by bootloader
   -n NUM, --num NUM     Leave only newest NUM kernels (see also: --sort-order)
   -s SORT_ORDER, --sort-order SORT_ORDER
                         Kernel sort order (mtime, version); default: version
 
 misc options:
   -D, --debug           Enable debugging output
   -M, --no-mount        Disable (re-)mounting /boot if necessary
   --no-bootloader-update
                         Do not update bootloader configuration after removing kernels (if supported by the bootloader
   --no-kernel-install   Do not call kernel-install while removing kernels (if installed)
   -x EXCLUDE, --exclude EXCLUDE
                         Exclude kernel parts from being removed (comma-separated, supported parts: vmlinuz, systemmap,
                         config, initramfs, modules, build, misc, emptydir)

例えば最近の3つのカーネルを残すには:

root #eclean-kernel -n 3

手作業での削除

Portage システムはインストールされたファイルのみを削除するので、カーネルのビルド及びインストールの際に生成されたファイルが残ります。これらのファイルは安全に削除することができます。

  • カーネルがソースのディレクトリからビルドされる際に、ビルド過程で生成されて残るファイルで、Portage システムによって削除されないもの:
root #rm -r /usr/src/linux-3.X.Y
  • カーネルのモジュールは、カーネルのセットアップ中に /lib/modules/ 内のサブディレクトリにコピーされています:
root #rm -r /lib/modules/3.X.Y
  • /boot 内の古いファイルもまた削除可能です:
root #rm /boot/vmlinuz-3.X.Y
root #rm /boot/System.map-3.X.Y
root #rm /boot/config-3.X.Y
root #rm /boot/initramfs-X.Y.Z
  • 最後に、ブートローダの設定ファイルに残された余分なエントリをすべて削除しましょう。