On 10.09.2014 23:23,
nrg...@gmail.com wrote:
> I have seen reference to the ability to be able to backup the domains to a remote location using ssh.
>
> My local instance of Qubes does not have enough storage space to do a backup locally so I would like to be able to do an encrypted one remotely via ssh. I guess all I need to figure out is the command to do so
You can enter a command to be run in VM, instead of path. That command will
get the backup content on stdin. Using ssh it could be:
ssh user@host dd of=path-to-store-backup
The command cannot be interactive, so you'll need pubkey authentication set.
As the backup is already encrypted, you can use some not encrypted protocol,
or even simple netcat:
nc some-server some-port
(and on remote server start "nc -l some-port > path-to-store-backup")
--
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?