[OpenAFS] 'vos backup' would create a file bigger than 2Gb
FBO
fbo2@gmx.net
Fri, 24 May 2002 09:09:05 +0200
On Fri, May 24, 2002 at 12:56:37AM -0500, Charles Clancy wrote:
> You can't dump in chunks, but you might try something like:
> To Backup:
> $ vos dump root.cell | gzip > root-cell-backup.gz
Maybe using split is better. "split" is part of debian's textutils package.
It would look like:
vos dump root.cell | split -b1024m - my_backup.
.
That line would redirect stdout of vos to split and write
as much 1024MByte-chunks as necessary.
For restoring you could use
cat my_backup.* | vos restore
.
FBO