Discussion:
dump trouble
Patrick Welche
2014-03-29 22:40:55 UTC
Permalink
On NetBSD-6.99.38/amd64:

# dump -0auxf - /home | ssh ... dd
DUMP: Cannot statvfs -: No such file or directory
DUMP: The ENTIRE dump is aborted.

I thought "-" was meant to be stdout ?

Cheers,

Patrick
Takahiro Kambe
2014-03-30 04:59:43 UTC
Permalink
Hi,

In message <***@quark>
on Sat, 29 Mar 2014 22:40:55 +0000,
Post by Patrick Welche
# dump -0auxf - /home | ssh ... dd
DUMP: Cannot statvfs -: No such file or directory
DUMP: The ENTIRE dump is aborted.
I thought "-" was meant to be stdout ?
You includes "-x" option and missing its argument. Below isn't what
you wanted to do. :-)

dump -0 -a -u -x - -f /home | ssh ... dd

Maybe you wanted to do:

dump -0 -a -u -X -f - /home | ssh ... dd

Best regards.
--
Takahiro Kambe <***@back-street.net>
Patrick Welche
2014-03-30 08:28:49 UTC
Permalink
Post by Takahiro Kambe
dump -0 -a -u -X -f - /home | ssh ... dd
Yes! Oh dear...

Thanks,

Patrick

Loading...