08-03-04 10:46 PM
In article <2n7d8mFtc6dcU1@uni-berlin.de>, newsgroup-
only@news.com says...
> For several reasons I would like to do a backup from a Windows XP
> machine to a Linux box using tar. The GnuWin32 tar works fine, however,
> without the -z option which compresses files with gzip. Does anybody
> have experience and hints with that?
I've piped the output of tar through bzip2 before.
Don't know that there's an advantage of doing it that
way or not.
tar -cv * | bzip2 -9 > file.tar.bz2
Speeds (AthlonXP 2600+, PC2700 DDR333)
2.85GB (10:53 to 11:41, 48min, 60.8 MB/min)
2.17GB (10:34 to 11:09, 35min, 63.5 MB/min)
8.49GB (11:12 to 13:30, 138min, 63.0 MB/min)
7.80GB (2:20 to 5:13, 173min, 46 MB/min, lots of small
files)
4.42GB (3:15 to 4:28, 73min, 62 MB/min)
0.85GB (8:55 to 9:09, 14min, 62 MB/min)
1.06GB (9:15 to 9:34,. 19min, 57 MB/min)
Another alternative for you is to do an rsync instead
from the WinXP box to the linux box. That requires
either running rsync in daemon mode on the linux box or
use ssh+rsync.
[ Post a follow-up to this message ]
|