:: krowemoh

Saturday | 10 MAY 2025
Posts Links Other About Now

previous
next

Cleaning up my Arch Machine

2025-05-04
sysadmin

I was running out of space and realized that my files were actually not taking up that much space. It was time to do some investigating.

To see what is taking up space:

du -sh $(ls -A) | sort -h

To clear the various caches:

paru -Scc
npm cache clean --force
rm ~/.local/share/Trash/files/*

After doing all this and uninstalling a few applications that I don't use, I now have 60% of my disk back.

A pretty good clean up effort.