Kali ini doArtic membuat artikel cara menghapus kernel lama pada Linux OS. Buat belajar gimana cara hapus kernel lama linux, berikut Tutorialnya!!!
Kernel Linux dan file yang berhubungan tersimpan di beberapa Directory seperti /boot, /etc atau /boot/grub dan di /lib/modules/KERNEL-VERSION/*
Berikut Command atau perintah yang harus diketikan :
Supaya gampang Copy (Ctrl + C) kodenya kemudia di Terminal Paste (Ctrl + Shift + V)
Rpm based distro - Red Hat/CentOS/Fedora Core/Suse Linux
Pertama-tama cari Kernel-kernel yang sudah terinstal,# rpm -qa | grep kernel-smp
atau
# rpm -qa | grep kernel
Output:
kernel-smp-2.6.9-42.EL kernel-smp-2.6.9-42.0.3.EL kernel-smp-2.6.9-42.0.8.EL
Ada 3 Kernel yang berbeda. Pilih kernel yang LAMA dan yang sedang TIDAK AKTIF
Hapus kernel-smp-2.6.9-42.EL dengan command:
# rpm -e kernel-smp-2.6.9-42.EL
atau
# rpm -vv -e kernel-smp-2.6.9-42.EL
.deb based distro - Debian or Ubuntu Linux
Pertama-tama cari Kernel yang sudah terinstal dan yang SEDANG AKTIFuname -r
Output : 2.6.20-16-genericcari Kernel-kernel yang sudah terinstal
$ dpkg --list | grep kernel-image
atau
$ dpkg --list | grep linux-image
Output:
ii kernel-image-2.4.27-2-386 2.4.27-10sarge1 Linux kernel image for version 2.4.27 on 386 ii kernel-image-2.6.8-2-686 2.6.8-16sarge1 Linux kernel image for version 2.6.8 on PPro
Sekarang kernel-image-2.4.27-2-386 dapat dihapus karena Kernel yang baru yang sedang dipakai berjalan Normal
Ketikan apt-get command:
# apt-get remove kernel-image-2.4.27-2-386
atau
$ sudo apt-get remove kernel-image-2.4.27-2-386
Catatan:
If you have custom compiled kernel you need to remove following files/dirs:
/boot/vmlinuz*KERNEL-VERSION*
/boot/initrd*KERNEL-VERSION*
/boot/System-map*KERNEL-VERSION*
/boot/config-*KERNEL-VERSION*
/lib/modules/*KERNEL-VERSION*/- Update grub configuration file /etc/grub.conf or /boot/grub/menu.lst to point to correct kernel version.
0 comments:
Posting Komentar