Ryan Novosielski wrote:
> I am looking for a little help on how to solve this problem. I'm running
> Bacula 1.38.11 and attempting to run a full system backup.
>
> The result (I canceled it):
>
> 1933  Full    121,193 52,702,244,286 Cancel   27-Dec-06 17:37 SystemArchive
>
> ...however, supposedly, the files are only 24 GB.
>   

Check whether you have any sparse files
(http://en.wikipedia.org/wiki/Sparse_file). Set the approriate option
(sparse = yes) and try again. I use the following FileSet as a default;
it automatically excludes /tmp (tmpfs-based), /proc (procfs).

FileSet {
  Name = "Full Set"
  Include {
    Options {
        aclsupport = no # I believe this will speed up the most common case

        sparse = yes
        compression = GZIP
        signature = MD5
        OneFS  = no

        FSType = ext2  # ext3 as well
        FSType = jfs
        FSType = reiserfs
        FSType = xfs
        FSType = jfs
    }
}




-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to