How can I configure the software updater to use my huge /user partition instead of /boot for downloading software updates?
Asked
Active
Viewed 57 times
1
1 Answers
2
Your system doesn't write to the /boot
partition except when it has to. Most notably, this means kernels and similar.
When a Ubuntu system updates, it keeps around a few old versions of the kernel in an attempt to keep your system operable. That is, if you update your kernel and your system fails to boot, you can just boot from the old ones.
After a while, these old redundant kernels become unnecessary. You can generally clear these out with the following command:
sudo apt autoremove
You can also use the excellent Ubuntu Tweak tool, whose Janitor section includes a kernel cleanup utility.

Kaz Wolfe
- 34,122
- 21
- 114
- 172
/boot
is used while downloading software updates; it should be at/var/cache/apt/archives
. What do you mean exactly by filling upboot
? – Aryo Adhi May 18 '18 at 02:44tree /boot/
? I looked on it back then and there was no single caches or anything that fills it up except old kernels. – Aryo Adhi May 18 '18 at 03:29