Free disk space

hello I have a problem and it is that I need to free up space in dev/sda1 partition because soon it will get full and I will have problems, what can I do or how do I delete what is inside? or can not be
Thks

1 Like

Decrease the number of backups

1 Like

@eris I think you misinterpreted…

@ToniN while this isn’t Hestia related in any way… /boot holds your boot-images and on every kernel update you might get a new on added. if you rebooted properly after the last kernel update, you can remove old kernel version and that will free up /boot easily.

often running apt autoremove --purge might already offer to remove old kernel packages already.

1 Like

In addition to the above, you may also find these commands useful:

To list the top 5 largest folders on the server, run:
du -a / | sort -n -r | head -n 5

To find the largest files, use:
find / -type f -exec du -Sh {} + | sort -rh | head -n 5

Thank you very much, solve the problem thanks to your help

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.