A clone is a replication, or an exact copy, of something.
Questions tagged [clone]
755 questions
76
votes
6 answers
Good block size for disk-cloning with diskdump (dd)
I use dd in its simplest form to clone a hard drive:
dd if=INPUT of=OUTPUT
However, I read in the manpage that dd knows a blocksize parameter. Is there an optimal value for the blocksize parameter that will speed up the cloning procedure?
Phi
- 883
67
votes
11 answers
Free way to clone HDD to SSD?
Is there a free way to clone a full Windows 7 installation from HDD to SSD? (The free part is important, I know I can pay for Acronis True Image.)
SSDs are usually much smaller than HDDs which complicates matters. For instance, I have about 50GB…
Borek Bernard
- 15,019
63
votes
4 answers
How can I clone a hard drive directly to a vdi image
I would like to make a VirtualBox .vdi image out of my hard drive.
I've found howto's online that describe doing this by first usind DD to create a .raw image, then using VBoxManage to convert the .raw to a .vdi. SO if my HD is 1 TB, this process…
SuperElectric
- 731
29
votes
3 answers
Using dd to clone a HDD to an SSD?
I have a home machine running Windows 7, and I’m wondering if it would work to do a command like this:
dd if=/dev/${oldSataSpinningDisk} of=/dev/${newSSD}
To clone the contents of the current system running on a SATA HDD to a new SSD? mainly, would…
dobbs
- 413
28
votes
5 answers
Clone only space in use from hard disk
Can I use dd, rsync, clonezilla or any tool to clone only space in use in my hard disk in Linux? I need to do a backup from a 1 TB HD (with only 2 GB space in use) into a 500 GB HD.
kroka
- 281
18
votes
3 answers
What must be changed for cloned Linux systems?
When cloning Windows systems, it's fairly well-known that one should run sysprep before creating an image. This way, when the machine starts up, it will reconfigure itself for its new environment: re-generate machine SIDs, install appropriate…
Stephen Jennings
- 23,491
18
votes
4 answers
Mirroring a web site behind a login form
Short version:
I'd like to snap an offline copy of a URL which includes the full HTML+CSS+JS+images and saves them locally, keeping the structure and file content of the original site.
I'm having trouble with the tools I can find (e.g. "Save…
orip
- 385
16
votes
3 answers
Clone Windows partition from Linux
So I've got a 120 GB Intel SSD, with a partition for Windows and another for Ubuntu. Ubuntu is my main OS, Windows is for gaming. But now I'm looking to install Mac OS X, and I'd like it to be on the SSD, so I'm looking to move Windows to a…
Fault
- 263
- 1
- 2
- 4
15
votes
4 answers
How to make a clone of a bootable USB?
I have a bootable USB for OSX El Capitan that I got from a friend. I need to make a copy of that on my USB. How do I clone that or make it into an ISO and clone the ISO into my USB in Mac?
ajy
- 650
14
votes
6 answers
How can I clone a Windows 10 disk onto a larger disk?
I have bought a larger SSD for my Windows 10 machine and an external USB enclosure and now I would like to transfer the content of the Windows 10 system disk onto the new SSD and eventually replace the system disk with this new SSD.
Problem: The…
Johannes Overmann
- 911
- 3
- 9
- 19
14
votes
9 answers
Can you clone a larger drive onto a smaller drive (used space fits on the smaller)
I have a 500GB drive which is about 50GB full. I got a 80GB SSD, which has 74.5GB of available space. I want to clone the system drive onto the SSD.
DriveImage XML will not let me copy a larger drive to a smaller one.
user11955
- 1,597
14
votes
3 answers
When cloning on with git bash on Windows, getting Fatal: UriFormatException encountered
I am using git bash
$ git --version
git version 2.9.3.windows.1
on Windows 7. When I clone a repo, I see:
$ git clone https://UserName@bitbucket.mycompany.org:5555/scm/repofolder/repo.git
Cloning into 'repo'...
Fatal: UriFormatException…
ericg
- 584
13
votes
4 answers
Clonezilla fails at cloning with mismatched GPT and MBR partition
I got this message:
This disk contains mismatched GPT and MBR partition: /dev/sda
Clonezilla's FAQ says:
You might have installed an OS with GPT partition table, and later
overwrite the disk by installing another OS with MBR partition table.
…
Gabriel
- 3,020
12
votes
1 answer
Setting WinRE (Windows Recovery Environment) Flag On Partitions
In AOMEI Partition Assistant I have cloned multiple partitions of one hard drive to another, however, the WRE flags have not been carried over, even when MSR and EFI have.
Is there any way to set WRE flags or is this even something that would have…
Davyd
- 123
11
votes
3 answers
Should I be using snapshots or clones for my purposes?
I have a VirtualBox machine representing a "clean" install of my OS. I would like to use this VM for several types of machines - one for simple games, one for programming, one for my audio editing. So basically I want three or four (maybe more…
loneboat
- 519