Difference between revisions of "Cloning a computer"
From Linuxintro
imported>ThorstenStaerk (New page: Cloning a computer means you have one computer and want to copy "everything" to another. This can mean different things and can have different reasons. = Reasons = * You want to have a st...) |
imported>ThorstenStaerk |
||
Line 4: | Line 4: | ||
* You want to have a stand-in computer in case your "pet computer" decides to go on vacation (it breaks for whatever reason). For this, a virtual machine is not enough. It is sufficient to copy every file from computer A to computer B. | * You want to have a stand-in computer in case your "pet computer" decides to go on vacation (it breaks for whatever reason). For this, a virtual machine is not enough. It is sufficient to copy every file from computer A to computer B. | ||
* You want to [[virtualize your computer]]. In this case you will have to dump every byte from your source (physical) to your target (virtual) computer. | * You want to [[virtualize your computer]]. In this case you will have to dump every byte from your source (physical) to your target (virtual) computer. | ||
+ | |||
+ | = Over the network = | ||
+ | cd / | ||
+ | tar -cv . | ssh root@192.168.0.5 "cat >slash.tar" |
Revision as of 21:44, 23 July 2009
Cloning a computer means you have one computer and want to copy "everything" to another. This can mean different things and can have different reasons.
Reasons
- You want to have a stand-in computer in case your "pet computer" decides to go on vacation (it breaks for whatever reason). For this, a virtual machine is not enough. It is sufficient to copy every file from computer A to computer B.
- You want to virtualize your computer. In this case you will have to dump every byte from your source (physical) to your target (virtual) computer.
Over the network
cd / tar -cv . | ssh root@192.168.0.5 "cat >slash.tar"