Changes by: szaka
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28599/ntfsprogs
Modified Files:
ntfsclone.8.in
Log Message:
ntfsclone man: examples use gzip instead of bzip2; some clarifications
Index: ntfsclone.8.in
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/ntfsclone.8.in,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -p -r1.17 -r1.18
--- ntfsclone.8.in 26 Jun 2005 20:11:03 -0000 1.17
+++ ntfsclone.8.in 28 Jun 2005 21:09:35 -0000 1.18
@@ -211,26 +211,25 @@ The exit code is 0 on success, non-zero
Save an NTFS to a file in the special image format
.RS
.sp
-.B ntfsclone \-\-save\-image \-\-output ntfs-backup.img /dev/hda1
+.B ntfsclone \-\-save\-image \-\-output backup.img /dev/hda1
.sp
.RE
Restore an NTFS from a special image file to its original partition
.RS
.sp
-.B ntfsclone \-\-restore-image \-\-overwrite /dev/hda1 ntfs-backup.img
+.B ntfsclone \-\-restore-image \-\-overwrite /dev/hda1 backup.img
.sp
.RE
-Save an NTFS into a compressed image. Note, gzip is faster usually
-at least 2-4 times than bzip2 but it creates also bigger compressed files.
+Save an NTFS into a compressed image.
.RS
.sp
-.B ntfsclone \-\-save-image \-o \- /dev/hda1 | bzip2 \-c > ntfs.img.bz2
+.B ntfsclone \-\-save-image \-o \- /dev/hda1 | gzip \-c > backup.img.gz
.sp
.RE
Restore an NTFS volume from a compressed image file
.RS
.sp
-.B bunzip2 \-c ntfs.img.bz2 | \\\\
+.B gunzip \-c backup.img.gz | \\\\
.br
.B ntfsclone \-\-restore-image \-\-overwrite /dev/hda1 \-
.sp
@@ -240,13 +239,13 @@ Backup an NTFS volume to a remote host,
.sp
.B ntfsclone \-\-save-image \-\-output \- /dev/hda1 | \\\\
.br
-.B gzip \-c | ssh host 'cat > ntfs.img.gz'
+.B gzip \-c | ssh host 'cat > backup.img.gz'
.sp
.RE
Restore an NTFS volume from a remote host via ssh.
.RS
.sp
-.B ssh host 'cat ntfs.img.gz' | gunzip -c | \\\\
+.B ssh host 'cat backup.img.gz' | gunzip -c | \\\\
.br
.B ntfsclone \-\-restore-image \-\-overwrite /dev/hda1 \-
.sp
@@ -254,7 +253,7 @@ Restore an NTFS volume from a remote hos
Stream an image from a web server and restore it to a partition
.RS
.sp
-.B wget \-qO \- http://server/ntfs.img | \\\\
+.B wget \-qO \- http://server/backup.img | \\\\
.br
.B ntfsclone \-\-restore\-image \-\-overwrite /dev/hda1 \-
.sp
|