alvaroag
06-01-2016, 20:12
You can restore a full image from the rescue mode. The best option is to put the image, compressed in gzip, into an http server. Then, you can run something like this:
wget -qO- http://server/image.gz | gzip -dc > /dev/sda
The gzip part is not mandatory, but it will make the file a lot smaller.
You must consider that this will surely wotk on the same server where the image was taken. It could probably work for another server with same hardware, but orobably won't on a different server.
wget -qO- http://server/image.gz | gzip -dc > /dev/sda
The gzip part is not mandatory, but it will make the file a lot smaller.
You must consider that this will surely wotk on the same server where the image was taken. It could probably work for another server with same hardware, but orobably won't on a different server.