Solved Cleaning after upgrade?

Hi guys,

for some reason after upgrading to 14.4 the files weren't deleted automagically.

Can I safely delete the files in the bigger dirs?

Code:
du -ah / | sort -rh | head -10
9.5G    /
5.3G    /var
5.1G    /var/db
5.0G    /var/db/freebsd-update/files
5.0G    /var/db/freebsd-update
3.8G    /usr

Thanks... 🙏
 
for some reason after upgrading to 14.4 the files weren't deleted automagically.
That's normal behavior. They are never removed and there are no Periodic script or cron job that cleans them up. They are preserved in case you need to do a system rollback.

Can I safely delete the files in the bigger dirs?
Once you've tested that everything is running smoothly, you can remove everything in there: # rm -r /var/db/freebsd-update/*
 
Back
Top