https://askubuntu.com/questions/345588/what-is-the-safest-way-to-clean-up-boot-partition
First check your kernel version, so you won't delete the in-use kernel image, running:
uname -r
Now run this command for a list of installed kernels:
dpkg --list 'linux-image*'
and delete the kernels you don't want/need anymore by running this:
sudo apt-get remove linux-image-VERSION
Replace VERSION with the version of the kernel you want to remove.
When you're done removing the older kernels, you can run this to remove ever packages you won't need anymore:
sudo apt-get autoremove
And finally you can run this to update grub kernel list:
sudo update-grub
'스크랩' 카테고리의 다른 글
jupyter에 virtualenv를 커널로 추가하기 (0) | 2017.10.19 |
---|---|
ubuntu 16.04 numix theme vscode 아이콘설정 (0) | 2017.10.18 |
[VS2015] Break point 작동 안할 때 (0) | 2017.05.23 |
라이트룸 라이브러리와 현상 모듈이 다르게 보일 때 (0) | 2015.05.20 |
공간 스킨 썸네일 넣기 (0) | 2015.02.06 |