Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
373 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
4answers
64 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
80 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 ...
1
vote
2answers
222 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
2answers
486 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
2answers
624 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
335 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 ...
1
vote
5answers
360 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 / ...
0
votes
1answer
64 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
56 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 ...
0
votes
5answers
161 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 ...
0
votes
3answers
63 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
256 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 ...
0
votes
0answers
118 views

Make graph of diskspace from du -sk command

I am using this command to calculate the current disk space utilization of folder and sub folders find -maxdepth 2 -exec du -sk {} \;|sort -rn|head|while read size loc; do echo "scale=2; $size/1024" ...
0
votes
4answers
425 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 ...
0
votes
3answers
101 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 ...
0
votes
5answers
1k 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 ...