How can you download (BU) a disk image?
I see that there are post about moving you VM to a local machine does that include the key? Or isn't there a simple way to do it?
Anyone?
15 Replies
@jjeffus:
… does that include the key?
Key?
@pclissold:
@jjeffus:… does that include the key?
Key?
Hint, clue, method, example.
this
@pclissold:
Still not sure I understand the question. Is
what you're looking for? this
That is what I was hoping to NOT have to do.
Seems like a very convoluted process to just BU a disk image.
pv /dev/sda | nc 1.2.3.4 1234
And on the receiving end:
nc -l 1234 > /foo/bar/my.img
It's about as dead-simple as it can get. Keeping in mind that all the parameters I've given here are just samples, and a linode doesn't use /dev/sda but something else (was it /dev/xva or something?)
If you want to get a bit fancier, you can pipe it through gzip (or pigz to use multiple cores) on the sending end and optionally decompress on the receiving end.
@pclissold:
Still not sure I understand the question. Is
what you're looking for? this
That is what I was hoping to NOT have to do.
Seems like a very convoluted process to just BU a disk image.
@Guspaz:
When I want to image a disk, I just do something like this:
pv /dev/sda | nc 1.2.3.4 1234
And on the receiving end:
nc -l 1234 > /foo/bar/my.img
It's about as dead-simple as it can get. Keeping in mind that all the parameters I've given here are just samples, and a linode doesn't use /dev/sda but something else (was it /dev/xva or something?)
If you want to get a bit fancier, you can pipe it through gzip (or pigz to use multiple cores) on the sending end and optionally decompress on the receiving end.
This is the type thing I was looking for thanks a million.
I'll give it a whirl.
I assume it's "back up", but since you just started using it without defining what it meant, I just wanted to make sure…
~JW
@JshWright:
Could you clarify what "BU" means?
I assume it's "back up", but since you just started using it without defining what it meant, I just wanted to make sure…
~JW
Yep, BU = back up
not in the FEDORA 11man-pages in the instance I installed here.
Can anyone point me to the pv command? Is it pv inside of lvm?
TIA
I gotta change my local firewall to do this.
Nothing to do with LVM. pv is Pipe Viewer.
Thanks. I found it while you were typing. Thanks.
It's very handy when doing a big operation, because it lets you know the progress.