du is a unix command to measure disk usage

learn more… | top users | synonyms

0
votes
0answers
7 views

why are some directories not counted in the command of “du”?

dear all, My question originated from the thread: Exclude all permission denied messages from "du" First of all, my unix information: uname -a Linux marvin-simuk 2.6.18.2-34-default ...
1
vote
2answers
71 views

du -h --max-depth=1 takes long time [closed]

When I try to calculate the size of files and directory inside the directory it takes longer time. The command I used is du -ch --max-depth=1. Is there any other way to calculate total size of files ...
0
votes
2answers
73 views

Using the Perl split() command to parse the output from the `du' command

I have a Perl script that has the following snippet in it: @mylittlearray = split(/\/dir1\/dir2\//, `du --max-depth=1 \/dir1\/dir2\//` print $mylittlearray[0]; print $mylittlearray[1]; print "\n"; ...
0
votes
1answer
41 views

Directory Stats command line interface?

Windirstat/ Kdirstat/ Disk Inventory X has been nothing short of revolutionary in file managment. Why is there no text-only command line equivalent? I'd need it for SSH administration of my file ...
0
votes
2answers
55 views

Exclude all permission denied messages from “du”

I am trying to evaluate the disk usage of a number of Unix user accounts. Simply, I am using the following command: du -cBM --max-depth=1 | sort -n But I’ve seen many error message like below. How ...
-2
votes
3answers
126 views

Folder Size Report to CSV

I think I've looked everywhere and i'm not having much luck. I'm trying to create a simple automated billing report. I need to create a CSV with 3 columns. like this Folder Size Billing Code ...
-1
votes
1answer
66 views

“du” has unexpected behavior [closed]

I've encountered this strange problem today, for which I cannot find an explanation. I have the following list of files on my Debian Linux system (produced using the "ls -l command"): ...
2
votes
2answers
99 views

how to get size of folder including apparent size of sparse files? (du is too slow)

I have a folder containing a lot of KVM qcow2 files, they are all sparse files. Now I need to get the total size of folder, the qcow2 file size should be counted as apparent size(not real size). for ...
0
votes
2answers
80 views

du -sh behaviour in terminal and from an python script?

With reference to my question at SuperUser, I am facing a puzzling situation where using du -sh /media/ExternalHd/myfolder/* works as expected from terminal, but using p=subprocess.Popen(['du', '-sh', ...
2
votes
2answers
560 views

Listing the results of the du command in alphabetical order

How can I list the results of the du command in alphabetical order? I know I can use the find command to list them alphabetically, but without the directory size, I also use the -maxdepth option for ...
2
votes
2answers
112 views

Use pipe with du to compute “size” of stdin

I have a program in which I load text from a file and then filter it according to one of the fields. What I am interested in is the size of the data after this filtering step. Ideally, I would be ...
1
vote
1answer
642 views

how to sort according to size of subdirectories when using du -sh * command? [closed]

du -sh * 275M fusionforge_g 50M git 99M httpd 181M php-doc 4.0M pirate3 3.4G qt 1.1M vim-addon-manager 126M wp-and this output is out of order now, how to make this output ...
-1
votes
1answer
357 views

On Linux get disk space used per user when you are not root [closed]

du --max-depth=1 will give the usage of the user you are logged in as. But we have a dev box shared by more than one team, so its getting tough to find the culprit. If I am root I can do it but I am ...
1
vote
1answer
637 views

du warning for netapp data ontap backend

I ran the following command du --apparent-size --block-size=1 --summarize /mnt2/nfspools/_root_root_p1 PS: /mnt2/nfspools/_root_root_p1 is mount point for volume in data ontap filer. I got the ...
0
votes
2answers
154 views

sudo bashfile makes syntax error

i have got a bash file which i want to toggle via the sudo crontab list. Problem is, that it does not work, because when i run the script with sudo, there is a syntax error message on this line: ...
1
vote
0answers
101 views

difference between du command and apache FileUtils.sizeOfDirectory

I do a simple du -sh on /etc/ directory it shows me 11M. But when I use: System.out.println(FileUtils.byteCountToDisplaySize(FileUtils.sizeOfDirectory(new File("/etc/")))); This shows me: 68 MB. Is ...
0
votes
1answer
577 views

Using du to get size of specific sub directories

I'm trying to write a script to summarise a bunch of folders. So I have the following structure: monitor/abc_123 1G monitor/abc_213 1G monitor/abc_111 2G monitor/bbc_123 2.5G What I need is to ...
0
votes
1answer
153 views

how to use du -sh inside bash script

I want to create a keeper on my jobs file on the HPC in the campus. Should my disk usage exceed 50GB I want all my jobs to stop (and possibly get an email about this). What I want to do is something ...
1
vote
0answers
60 views

Quick way to get full directory size

My app need to get total directory size as quick as possible. Standart du command works slow for big directories. Possible solution with linux inotify doesn't work with NFS. So I end up with these ...
2
votes
1answer
2k views

Process.Start(): The system cannot find the file specified, but my file path seems to be legit

This is boggling my mind. Using the following code: Process du = new Process(); string cmdPath = System.IO.Path.Combine(Environment.SystemDirectory, "du.exe"); Debug.WriteLine(cmdPath); ...
-2
votes
1answer
138 views

How to develop a script that can be impletement some du function in UNIX shell script

I have some questions about how to implement some du function in UNIX shell (/bin/sh) when I want to write a script to exec some commands. 1)To avoid confusion with the real du command, how can I ...
0
votes
3answers
285 views

Why du or echo pipelining is not working?

I'm trying to use du command for every directory in the current one. So I'm trying to use code like this: ls | du -sb But its not working as expected. It outputs only size of current '.' directory ...
0
votes
1answer
578 views

Determine inode usage [closed]

How could I determine what's causing high inode usage? I need something more precise than df -hi. I currently have opened millions of inodes and I would like to know what is causing this. Deleting ...
0
votes
1answer
230 views

Reacting to Android root command 'du'

I have an app that successfully gets root access and executes 2 simple commands; cd / and du. I'm not even sure if the cd is necessary because I think that's where you end up after you su. But ...
1
vote
5answers
576 views

kilobytes to human readable. Looking for one liner

I often work on unix boxes that don't have the -h flag for du. I am looking for a one-liner to convert KB to human readable. Perl seemed like a good choice. This is what I have so far. @a=split ...
1
vote
4answers
104 views

Split the output in PHP

I'm trying to use either split, preg_split, or explode to parse the following data into an array so that I can easily print and modify the data: 28782188 /var/opt When I run ...
1
vote
1answer
199 views

Directory size in linux. Performance question

I have a script to scan set of folders to get sizes; and display this info to browser. This script calls 'du' and parses output. The question is about performance. How fast is it? for example if ...
0
votes
3answers
610 views

size of every www folder in users' home

I need to make a shell script to get the size of every www directory of my users home folder I need somethings like USERNAME - WWWdirsize USERNAME - WWWdirsize TOTAL www Size = ... I know that I ...
0
votes
2answers
1k views

Difference in size shown by “du” command and “get info” on Mac OS X [closed]

Run the command "du -ch /Applications" on terminal, note down its size. Now look at the size of /Applications folder from "Get Info" option. There is a major difference size shown. Same is true for ...
1
vote
2answers
996 views

why is the output of `du` often so different from `du -b`

why is the output of du often so different from du -b? -b is shorthand for --apparent-size --block-size=1. only using --apparent-size gives me the same result most of the time, but --block-size=1 ...
1
vote
4answers
1k views

bash script to parse du -s * output and warn users who are above certain storage limit

I am trying to wrote a script to check homefolders disk usage, and warn users when they are above xxGB, by email I dump the output of the du -s * to a temp file, read it line by line, and when i try ...
3
votes
2answers
2k views

Excluding hidden files from du command output with --exclude, grep -v or sed

I'm trying to check with Disk Usage tool how big are my home directory folders but it also prints out folders and files starting with dot. I can't seem to filter them out. du -h --exclude="?" du -h ...
1
vote
3answers
2k views

du -skh * in / returns vastly different size from df on centos 5.5

I have a vps slice running centos 5.5 I am supposed to have 15 gigs of disk space, but according to df it seems to double my disk space usage. when I run du -skh * in / as root i get: ...
1
vote
3answers
712 views

What is the algorithm unix du command uses to calculate disk space?

I've tried using du to calculate disk usage today on a single directory. The size of directory is 6GB and it took the following amount of time to calculate: prompt> time du -sh . 6.0G . real ...
7
votes
2answers
2k views

Error when calling 3rd party executable from Powershell when using an IDE

I have a PowerShell script that uses du.exe (Disk Usage originally from Sysinternals) to calculate the size of directories. If I run du c:\Backup in the console, it works as expected, but the same ...
1
vote
5answers
163 views

Is there a standard way to diff du outputs to detect where disk space usage has grown the most

I work with a small team of developers where we share a unix file system to store somewhat large datasets. This file system has a somewhat prohibitive quota on it so about once a month we have to ...
4
votes
6answers
3k views

Why does “find . -name *.txt | xargs du -hc” give multiple totals?

I have a large set of directories for which I'm trying to calculate the sum total size of several hundred .txt files. I tried this, which mostly works: find . -name *.txt | xargs du -hc But ...
1
vote
4answers
491 views

What can du see that rsync can't?

I want to copy an entire linux server that is going to be decommissioned over the network so we are sure nothing is lost. I did du / and was told there are 60 GB of under / Then I did rsync -r / ...