Tracking down where disk space has gone on Linux? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T10:19:26Zhttp://stackoverflow.com/feeds/question/32230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux18Tracking down where disk space has gone on Linux?Owen Fraser-Green2008-08-28T13:17:42Z2009-03-12T14:48:06Z
<p>When administering Linux systems I often find myself struggling to track down the culprit after a partition goes full. I normally use
du / | sort -nr
but on a large filesystem this takes a long time before any results are returned. Also, this is usually successful in highlighting the worst offender but I've often found myself resorting to
du
without the
sort
in more subtle cases and then had to trawl through the output.</p>
<p>I'd prefer a command line solution which relies on standard Linux commands since I have to administer quite a few systems and installing new software is a hassle (especially when out of disk space!)</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32235#3223510Answer by Konrad Rudolph for Tracking down where disk space has gone on Linux?Konrad Rudolph2008-08-28T13:19:44Z2008-08-28T13:19:44Z<p><code>du</code> can be depth-restricted:</p>
<pre><code>du -d 5
</code></pre>
<p>Will only recurse to depth 5.</p>
<p>/EDIT: This counts only for the display; the tool will still determine the total size of the whole directory tree but this is still much faster than running a full <code>du</code>.</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32238#322385Answer by Peter Hilton for Tracking down where disk space has gone on Linux?Peter Hilton2008-08-28T13:20:27Z2008-08-28T13:20:27Z<p>One option would be to run your du/sort command as a cron job, and output to a file, so it's already there when you need it.</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32247#322472Answer by hometoast for Tracking down where disk space has gone on Linux?hometoast2008-08-28T13:24:26Z2008-08-28T13:24:26Z<p>For command line <strong>du</strong> (and it's options) seems to be the best way. <a href="http://www.linuxjournal.com/article/2416" rel="nofollow">DiskHog</a> looks like it uses du/df info from a cron job too so <a href="http://beta.stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux#32238" rel="nofollow">Peter's suggestion</a> is probably the best combination of simple and effective.</p>
<p>(<a href="http://www.methylblue.com/filelight/" rel="nofollow">FileLight</a> and <a href="http://kdirstat.sourceforge.net/" rel="nofollow">KDirStat</a> are ideal for GUI.)</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32252#322529Answer by Ben Collins for Tracking down where disk space has gone on Linux?Ben Collins2008-08-28T13:25:31Z2008-08-28T13:25:31Z<p>Don't go straight to <code>du /</code>. Use df to find the partition that's hurting you, and then try 'du' commands. </p>
<p>One I like to try is</p>
<pre><code>du -h <dir> | grep '[0-9]G'
</code></pre>
<p>because it prints sizes in "human readable form". Unless you've got really small partitions, grepping for directories in the gigabytes is a pretty good filter for what you want. This will take you some time, but unless you have quotas set up, I think that's just the way it's going to be.</p>
<p>If you <em>do</em> have quotas, you can use</p>
<pre><code>quota -v
</code></pre>
<p>to find users that are hogging the disk.</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32256#322563Answer by rjmunro for Tracking down where disk space has gone on Linux?rjmunro2008-08-28T13:27:02Z2008-09-01T16:27:20Z<p>Finding the biggest files on the filesystem is always going to take a long time. By definition you have to traverse the whole filesystem looking for big files. The only solution is probably to run a cron job on all your systems to have the file ready ahead of time.</p>
<p>I'd like to have a system that builds a tree of file sizes at the same time as building the database for the locate command, as this also has to traverse the whole filesystem once per night.</p>
<p>One other thing, the x option of du is useful to keep du from following mount points into other filesystems. I.e:</p>
<pre><code> du -x [path]
</code></pre>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32275#322752Answer by wvdschel for Tracking down where disk space has gone on Linux?wvdschel2008-08-28T13:33:39Z2008-08-28T13:33:39Z<p>I always use <code>du -sm * | sort -n</code>, which gives you a sorted list of how much the subdirectories of the current working directory use up, in mebibytes.</p>
<p>You can also try Konqueror, which has a "size view" mode, which is similar to what WinDirStat does on Windows: it gives you a viual representation of which files/directories use up most of your space.</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32330#323302Answer by Mark Borgerding for Tracking down where disk space has gone on Linux?Mark Borgerding2008-08-28T13:50:17Z2008-08-28T15:21:50Z<p>Try feeding the output of du into a simple awk script that checks to see if the size of the directory is larger than some threshold, if so it prints it. You don't have to wait for the entire tree to be traversed before you start getting info.</p>
<p>For example, the following displays any directories that consume more than about 500 MB ( assuming du units are in KB)</p>
<pre><code>du -x / | awk '{ if ($1 > 500000) { print $0} }'
</code></pre>
<p>To make the above a little more reusable, you can define a function in your .bashrc, ( or you could make it into a standalone script).</p>
<pre><code>dubig() {
[ -z "$1" ] && echo "usage: dubig sizethreshKB [duargs]" && return
du $2 | awk '{ if ($1 > '$1') { print $0} }'
}
</code></pre>
<p>The following example checks my home directory for any directories that have more than 200 MB, without going onto another file-system (e.g. symlink to a different nfs mount)</p>
<pre><code>dubig 200e3 "$HOME -x"
</code></pre>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32464#324642Answer by asjo for Tracking down where disk space has gone on Linux?asjo2008-08-28T14:46:15Z2008-08-28T14:46:15Z<p>I like the good old <a href="http://xdiskusage.sourceforge.net/" rel="nofollow">xdiskusage</a> as a graphical alternative to du(1).</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/32485#324851Answer by Justin Standard for Tracking down where disk space has gone on Linux?Justin Standard2008-08-28T14:53:19Z2008-08-28T14:53:19Z<p>I've had success tracking down the worst offender(s) piping the <code>du</code> output in human readable form to <code>egrep</code> and matching to a regular expression.</p>
<p>For example:</p>
<pre><code>du -h | egrep "[0-9]+G.*|[5-9][0-9][0-9]M.*"
</code></pre>
<p>which should give you back everything 500 megs or higher. </p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/33173#331734Answer by Peter Stuifzand for Tracking down where disk space has gone on Linux?Peter Stuifzand2008-08-28T19:20:16Z2008-08-28T19:20:16Z<p>For the commandline I think the du/sort method is the best. If you're not on a server you should take a look at <a href="http://www.marzocca.net/linux/baobab.html" rel="nofollow">Baobab - Disk usage analyzer</a>. This program also takes some time to run, but you can easily find the sub directory deep, deep down where all the old Linux ISOs are.</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/35227#352272Answer by John Meagher for Tracking down where disk space has gone on Linux?John Meagher2008-08-29T20:22:13Z2008-08-29T20:22:13Z<p>I use</p>
<pre><code>du -ch --max-depth=2 .
</code></pre>
<p>and I change the max-depth to suit my needs. The "c" option prints totals for the folders and the "h" option prints the sizes in K, M, or G as appropriate. As others have said, it still scans all the directories, but it limits the output in a way that I find easier to find the large directories. </p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/47530#475303Answer by Andrew Whitehouse for Tracking down where disk space has gone on Linux?Andrew Whitehouse2008-09-06T15:01:42Z2008-09-06T15:01:42Z<p>At a previous company we used to have a cron job that was run overnight and identified any files over a certain size, e.g.</p>
<p>find / -size +10000k</p>
<p>You may want to be more selective about the directories that you are searching, and watch out for any remotely mounted drives which might go offline.</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/50449#504490Answer by hendry for Tracking down where disk space has gone on Linux?hendry2008-09-08T19:12:23Z2008-09-08T19:12:23Z<p>At first I check the size of directories, like so:</p>
<pre><code>du -sh /var/cache/*/
</code></pre>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/83895#838950Answer by Steve Baker for Tracking down where disk space has gone on Linux?Steve Baker2008-09-17T14:35:41Z2008-09-17T14:35:41Z<p>If you want speed, you can enable quotas on the filesystems you want to monitor (you need not set quotas for any user), and use a script that uses the quota command to list the disk space being used by each user. For instance:</p>
<pre><code>quota -v $user | grep $filesystem | awk '{ print $2 }'
</code></pre>
<p>would give you the disk usage in blocks for the particular user on the particular filesystem. You should be able to check usages in a matter of seconds this way.</p>
<p>To enable quotas you will need to add usrquota to the filesystem options in your /etc/fstab file and then probably reboot so that quotacheck can be run on a idle filesystem before quotaon is called.</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/86217#862170Answer by JK for Tracking down where disk space has gone on Linux?JK2008-09-17T18:37:00Z2008-09-17T18:37:00Z<p>I can't take credit for this, but I found it just yesterday:</p>
<pre><code>$ find <path> -size +10000k -print0 | xargs -0 ls -l
</code></pre>
<p><a href="http://linuxandfriends.com/2008/09/10/how-to-find-large-files-in-linux-using-command-line/" rel="nofollow">link text</a></p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/334547#3345472Answer by derobert for Tracking down where disk space has gone on Linux?derobert2008-12-02T16:20:43Z2008-12-02T16:20:43Z<p>I'm going to second <code>xdiskusage</code>. But I'm going to add in the note that it is actually a du frontend and can read the du output from a file. So you can run <code>du -ax /home > ~/home-du</code> on your server, <code>scp</code> the file back, and then analyze it graphically. Or pipe it through ssh.</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/529102#5291020Answer by Mike Dunlavey for Tracking down where disk space has gone on Linux?Mike Dunlavey2009-02-09T17:35:27Z2009-02-10T16:45:24Z<p>Here is a tiny app that uses deep sampling to find tumors in any disk or directory. It walks the directory tree twice, once to measure it, and the second time to print out the paths to 20 "random" bytes under the directory.</p>
<pre><code>void walk(string sDir, int iPass, int64& n, int64& n1, int64 step){
foreach(string sSubDir in sDir){
walk(sDir + "/" + sSubDir, iPass, n, n1, step);
}
foreach(string sFile in sDir){
string sPath = sDir + "/" + sFile;
int64 len = File.Size(sPath);
if (iPass == 2){
while(n1 <= n+len){
print sPath;
n1 += step;
}
}
n += len;
}
}
void dscan(){
int64 n = 0, n1 = 0, step = 0;
// pass 1, measure
walk(".", 1, n, n1);
print n;
// pass 2, print
step = n/20; n1 = step/2; n = 0;
walk(".", 2, n, n1);
print n;
}
</code></pre>
<p>The output looks like this for my Program Files directory:</p>
<pre><code> 7,908,634,694
.\ArcSoft\PhotoStudio 2000\Samples\3.jpg
.\Common Files\Java\Update\Base Images\j2re1.4.2-b28\core1.zip
.\Common Files\Wise Installation Wizard\WISDED53B0BB67C4244AE6AD6FD3C28D1EF_7_0_2_7.MSI
.\Insightful\splus62\java\jre\lib\jaws.jar
.\Intel\Compiler\Fortran\9.1\em64t\bin\tselect.exe
.\Intel\Download\IntelFortranProCompiler91\Compiler\Itanium\Data1.cab
.\Intel\MKL\8.0.1\em64t\bin\mkl_lapack32.dll
.\Java\jre1.6.0\bin\client\classes.jsa
.\Microsoft SQL Server\90\Setup Bootstrap\sqlsval.dll
.\Microsoft Visual Studio\DF98\DOC\TAPI.CHM
.\Microsoft Visual Studio .NET 2003\CompactFrameworkSDK\v1.0.5000\Windows CE\sqlce20sql2ksp1.exe
.\Microsoft Visual Studio .NET 2003\SDK\v1.1\Tool Developers Guide\docs\Partition II Metadata.doc
.\Microsoft Visual Studio .NET 2003\Visual Studio .NET Enterprise Architect 2003 - English\Logs\VSMsiLog0A34.txt
.\Microsoft Visual Studio 8\Microsoft Visual Studio 2005 Professional Edition - ENU\Logs\VSMsiLog1A9E.txt
.\Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\v2.0\WindowsCE\wce500\mipsiv\NETCFv2.wce5.mipsiv.cab
.\Microsoft Visual Studio 8\VC\ce\atlmfc\lib\armv4i\UafxcW.lib
.\Microsoft Visual Studio 8\VC\ce\Dll\mipsii\mfc80ud.pdb
.\Movie Maker\MUI\0409\moviemk.chm
.\TheCompany\TheProduct\docs\TheProduct User's Guide.pdf
.\VNI\CTT6.0\help\StatV1.pdf
7,908,634,694
</code></pre>
<p>It tells me that the directory is 7.9gb, of which</p>
<ul>
<li>~15% goes to the Intel Fortran compiler</li>
<li>~15% goes to VS .NET 2003</li>
<li>~20% goes to VS 8</li>
</ul>
<p>It is simple enough to ask if any of these can be unloaded.</p>
<p>It also tells about file types that are distributed across the file system, but taken together represent an opportunity for space saving:</p>
<ul>
<li>~15% roughly goes to .cab and .MSI files</li>
<li>~10% roughly goes to logging text files</li>
</ul>
<p>It shows plenty of other things in there also, that I could probably do without, like "SmartDevices" and "ce" support (~15%).</p>
<p>It does take linear time, but it doesn't have to be done often.</p>
<p>Examples of things it has found:</p>
<ul>
<li>backup copies of DLLs in many saved code repositories, that don't <em>really</em> need to be saved</li>
<li>a backup copy of someone's hard drive on the server, under an obscure directory</li>
<li>voluminous temporary internet files</li>
<li>ancient doc and help files long past being needed</li>
</ul>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/533161#5331610Answer by Brian Postow for Tracking down where disk space has gone on Linux?Brian Postow2009-02-10T16:49:16Z2009-02-10T16:49:16Z<p>I'm surprised that no one has mentioned the -k option to du... du natuarly prints in blocks (either .5 or 2 k, I never remember) and it's hard to read. -k makes it output in kb...</p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/638972#6389720Answer by kirillka for Tracking down where disk space has gone on Linux?kirillka2009-03-12T14:48:06Z2009-03-12T14:48:06Z<p>If you know that the large files have been added in the last few days (say, 3), then you can use a find command in conjunction with "<code>ls -ltra</code>" to discover those recently added files:</p>
<pre><code>find /some/dir -type f -mtime -3 -exec ls -lart {} \;
</code></pre>
<p>This will give you just the files ("<code>-type f</code>"), not directories; just the files with modification time over the last 3 days ("<code>-mtime -3</code>") and execute "<code>ls -lart</code>" against each found file ("<code>-exec</code>" part).</p>