You are not logged in.
Hi
I have a Arch Dekstop, with Beryl, KDE, and some minimalistic programs, but for some reason, the disk space is getting tighter and tighter. I deleted files that were not necesary, cleared browsing data cache and removed the local packages that pacman stores. And still it is not sufficient. Any ideas?
Offline
My idea would be to find out exactly where the problem data is, and what is generating it. Once you have that, you can probably work out a solution - or at least post the details here.
Offline
You can try using filelight. It's a graphical du app. It will telll you which directories takes all the space.
Offline
The /opt and the /usr and /usr/lib are very huge. Any ideas?
Offline
You'll need to be a bit more specific than that. Those are always big, dig down deeper.
Offline
There are about a billion ways to do this. I prefer this script I found years ago after reading Linux Sever Hacks:
As root, run:
find / -type d | xargs du -sm | sort -g
The output is in Megs, so 1024=1 gig. I'm frankly surprised that it isn't /var eating your space - it tends to be the culprit most of the time.
Unthinking respect for authority is the greatest enemy of truth.
-Albert Einstein
Offline
Oh, and the largest dirs will be on the bottom of the output so no need to pipe this to more.
Unthinking respect for authority is the greatest enemy of truth.
-Albert Einstein
Offline
also, clean your pacman cache, it's probably getting pretty big.
it's at /var/cache/pacman/pkg, though the preferred cleanup is pacman -Sc IIRC.
James
Offline
pacman -Sc cleans old packages
pacman -Scc cleans all packages which may help a little more.
Offline