autodmc wrote:
I was actually thinking of backing up the whole filesystem. I'm trying to figure out the easiest/safest way to do that.
Perferably I'd like to back up to a "compressed image" on my home hard drive.
Assuming you've got a Linux box at home / elsewhere able to receive a SSH connection from your Linode, you can try this:
Code:
$ ssh USER@hostXX.linode.com
(login)
$ sudo dump -0uf - /dev/ubda | gzip -2 | \
ssh USER@HOMEMACHINE dd of=<SOMEDIR>/linode-udba-0.dump.gz
This example uses dump(1), but you can use a different archive tool if you prefer.
HTH,
Cliff
[*] The dump / gzip / ssh / dd pipeline is based on
a FreeBSD Handbook example (17-1).