[opensuse] Finding a lot of Cache's
find ./ -type d -name [cC]ache -print ./.kde/share/apps/amarok/albumcovers/cache ./.gftp/cache ./.java/deployment/cache ./OpenOffice.org/user/registry/cache ./.mozilla/default/6mfyxp94.slt/Cache ./.mozilla/firefox/wn3ea5bj.default/Cache ./.evolution/mail/pop/cwsiv@pop3.myrealbox.com/cache many more . . . ./.evolution/cache ./.openoffice.org2/user/uno_packages/cache ./.openoffice.org2/user/registry/cache ./.adobe/Acrobat/7.0/Cache ./.macromedia/Flash_Player/#SharedObjects/HHPWQGBG/localhost/cwsiv/.mozilla/default/6mfyxp94.slt/Cache ./.ooo-2.0-pre/user/uno_packages/cache ./.ooo-2.0-pre/user/registry/cache Can I safely clean these out? I am looking fow where I nearly filled up a 15 gig /home. ___ _ _ _ ____ _ _ _ | | | | [__ | | | |___ |_|_| ___] | \/ -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Carl Spitzer wrote:
find ./ -type d -name [cC]ache -print
./.kde/share/apps/amarok/albumcovers/cache ./.gftp/cache ./.java/deployment/cache ./OpenOffice.org/user/registry/cache ./.mozilla/default/6mfyxp94.slt/Cache ./.mozilla/firefox/wn3ea5bj.default/Cache ./.evolution/mail/pop/cwsiv@pop3.myrealbox.com/cache many more . . . ./.evolution/cache ./.openoffice.org2/user/uno_packages/cache ./.openoffice.org2/user/registry/cache ./.adobe/Acrobat/7.0/Cache ./.macromedia/Flash_Player/#SharedObjects/HHPWQGBG/localhost/cwsiv/.mozilla/default/6mfyxp94.slt/Cache ./.ooo-2.0-pre/user/uno_packages/cache ./.ooo-2.0-pre/user/registry/cache
Can I safely clean these out?
Log out of the GUI, login to a text terminal, and you can safey clean them out, fully secure in the knowledge that none of these X11 programs are running.
I am looking fow where I nearly filled up a 15 gig /home.
Very interesting. I'll take a look at my own system ;-) -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Donnerstag, 17. Januar 2008 Carl Spitzer:
find ./ -type d -name [cC]ache -print
for i in `find ./ -type d -name [cC]ache -print`;do du -sh $i;done
./.kde/share/apps/amarok/albumcovers/cache ./.gftp/cache ./.java/deployment/cache ./OpenOffice.org/user/registry/cache ./.mozilla/default/6mfyxp94.slt/Cache ./.mozilla/firefox/wn3ea5bj.default/Cache ./.evolution/mail/pop/cwsiv@pop3.myrealbox.com/cache many more . . . ./.evolution/cache ./.openoffice.org2/user/uno_packages/cache ./.openoffice.org2/user/registry/cache ./.adobe/Acrobat/7.0/Cache ./.macromedia/Flash_Player/#SharedObjects/HHPWQGBG/localhost/cwsiv/.mozilla /default/6mfyxp94.slt/Cache ./.ooo-2.0-pre/user/uno_packages/cache ./.ooo-2.0-pre/user/registry/cache
But I think most of these would be small.
Can I safely clean these out? I am looking fow where I nearly filled up a 15 gig /home.
cd; du | sort -n or kdirstat can be useful. Wolfgang -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
participants (3)
-
Aaron Kulkis
-
Carl Spitzer
-
Wolfgang Woehl