Personal tools
You are here: Home Knowledge Computing dirvish image disk usage
Document Actions

Computing dirvish image disk usage

It's sometimes hard to detect the size of a dirvish backup image; here's one way to do it.


dirvish is a fantastic backup system that we use extensively.  It's very easy to create many incremental snapshots with it.  One minor problem is determining the disk space that each snapshot actually uses.

This shell script:

for dir in /path-to-vault/* ; do 
sum=0
for s in `find $dir -type f -links 1 -print0 | xargs -0 stat -c '%s'` ; do
sum=`expr $sum + $s`
done
echo $dir $sum
done

will tell you the size, in bytes, of files that belong only to a single snapshot.

Here's a presentation we gave on using dirvish.

Computer Professionals


Learning What You Don't Know
Can Help You Earn More and
Give You Greater Security

Improve your computer career or business with reliable information from True Blade Systems.

Subscribe to our free newsletter.
No obligation - unsubscribe anytime.

Name
Email

We like privacy and won't share your info. Subscribe now to get valuable career and consulting information from True Blade Systems - free.