Hello I ran into this tonight when updating somethings, YAST says my /dev/hda1 is 96% full. I went looking for the culprit but can't seem to find it, anyone got any ideas, thanks. -- LostSon http://www.lostsonsvault.org /\ \ \ \__/ \__/ \ \ (oo) (oo) \_\/~~\_/~~\_ _.-~===========~-._ (___________________) \_______/ I Want To Believe
On Thursday 03 August 2006 19:34, lostson wrote:
Hello I ran into this tonight when updating somethings, YAST says my /dev/hda1 is 96% full. I went looking for the culprit but can't seem to find it, anyone got any ideas, thanks.
You are not the first to report something like this, but your report is one of the more sparse in terms of any documentation, -- _____________________________________ John Andersen
lostson wrote:
Hello I ran into this tonight when updating somethings, YAST says my /dev/hda1 is 96% full. I went looking for the culprit but can't seem to find it, anyone got any ideas, thanks.
Find out where your /dev/hda1 is mounted, then run "du -hsx <mountpoint>/*" /Per Jessen, Zürich
Per Jessen a écrit :
lostson wrote:
Hello I ran into this tonight when updating somethings, YAST says my /dev/hda1 is 96% full. I went looking for the culprit but can't seem to find it, anyone got any ideas, thanks.
Find out where your /dev/hda1 is mounted, then run "du -hsx <mountpoint>/*"
use filelight or kdirstat jdd -- http://www.dodin.net http://dodin.org/galerie_photo_web/expo/index.html http://lucien.dodin.net http://fr.susewiki.org/index.php?title=Gérer_ses_photos
lostson wrote:
Hello I ran into this tonight when updating somethings, YAST says my /dev/hda1 is 96% full. I went looking for the culprit but can't seem to find it, anyone got any ideas, thanks.
You might try the du command, to see where all the space is used.
Hello I ran into this tonight when updating somethings, YAST says my /dev/hda1 is 96% full. I went looking for the culprit but can't seem to find it, anyone got any ideas, thanks.
You might try the du command, to see where all the space is used.
Or, if activated, `quota -v` on which user uses all space up (comes in VERY handy for machines housing more than a couple of users) and is much more faster and reliable than `du -s /home/XYZ`. Jan Engelhardt --
On Friday 04 August 2006 08:11, Peter Onion wrote:
On Fri, 2006-08-04 at 13:39 +0200, Jan Engelhardt wrote
You might try the du command, to see where all the space is used.
A little trick I use is
du . | sort -n > du.sorted tail du.sorted
Peter
Thanks to all who dropped me some info on this. It seems my tmp cache and log directories were quite large. I have my /dev/hda down to 73% still is pretty full, trying to find more as i go. There has to be some more i can get rid of just haven't found it yet, thanks again!! -- LostSon http://www.lostsonsvault.org /\ \ \ \__/ \__/ \ \ (oo) (oo) \_\/~~\_/~~\_ _.-~===========~-._ (___________________) \_______/ I Want To Believe
On Friday 04 August 2006 15:28, lostson wrote:
On Friday 04 August 2006 08:11, Peter Onion wrote:
On Fri, 2006-08-04 at 13:39 +0200, Jan Engelhardt wrote
You might try the du command, to see where all the space is used.
A little trick I use is
du . | sort -n > du.sorted tail du.sorted
Peter
Thanks to all who dropped me some info on this. It seems my tmp cache and log directories were quite large. I have my /dev/hda down to 73% still is pretty full, trying to find more as i go. There has to be some more i can get rid of just haven't found it yet, thanks again!!
find might also be usefull: find /mountpoint/. -xdev -type f -size +10M finds files (-type f) greater than 10M (-size +10M) only on mountpoint's filesystem (-xdev). find /mountpoint/. -xdev -type f -size +10M -exec ls -l {} \; lists them as well. Cheers, Leen
On Thu, 2006-08-03 at 22:34 -0500, lostson wrote:
Hello I ran into this tonight when updating somethings, YAST says my /dev/hda1 is 96% full. I went looking for the culprit but can't seem to find it, anyone got any ideas, thanks.
You might check your trash directory. On KDE, look in ~/.local/share/Trash
rmyster wrote:
On Thu, 2006-08-03 at 22:34 -0500, lostson wrote:
Hello I ran into this tonight when updating somethings, YAST says my /dev/hda1 is 96% full. I went looking for the culprit but can't seem to find it, anyone got any ideas, thanks.
You might check your trash directory. On KDE, look in ~/.local/share/Trash
A script that gives you a sorted list (Size of Files, largest at last) of a Path (f.e.: dus . List of files of the current directory and down the branches). #!/bin/sh du -k -x "$@" | sort -n | tail -100 I use it. W. -- +---------------------------------------------------------------------+ |Wolfgang Klameth | |Mail: klameth@wifo.ac.at oder wolfgang.klameth@chello.at | |A-1103 Wien - Austria http://www.wifo.ac.at/~klameth/ | +---------------------------------------------------------------------+
participants (10)
-
James Knott
-
Jan Engelhardt
-
jdd sur free
-
John Andersen
-
Leendert Meyer
-
lostson
-
Per Jessen
-
Peter Onion
-
rmyster
-
Wolfgang Klameth