domingo, setembro 27, 2026
Increva-se
Inicio English How to Clone a Hard Drive to an SSD or NVMe Without Formatting (Clonezilla, Step by Step)

How to Clone a Hard Drive to an SSD or NVMe Without Formatting (Clonezilla, Step by Step)

Forget “Error 87”, frozen Command Prompts and wasted hours. The industry-standard way to copy your whole disk, bit by bit, with Clonezilla — free and open-source.

por tecnologiaxt
Hardware ⏱ 10 min read 📅 September 2026

How to Clone a Hard Drive to an SSD or NVMe Without Formatting (Clonezilla, Step by Step)

Forget “Error 87”, frozen Command Prompts and wasted hours. The industry-standard way to copy your whole disk, bit by bit, with Clonezilla — free and open-source.

RC
Let’s move your entire system to a new SSD or NVMe drive without reinstalling Windows, using a free, professional-grade method. I’m Ronaldo Cardoso from Tecnologia Moderna — technical, honest and always free content.
Quick summary

Cloning a whole disk without reinstalling Windows is possible, free and professional-grade:

  • Bare-metal cloning copies the disk sector by sector — far more reliable than copying file by file.
  • Tools: Clonezilla (free) plus Rufus to create the boot USB stick.
  • Golden rule: the destination disk must be the same size or larger than the source.
  • No need to format the new SSD first — Clonezilla overwrites everything automatically.
  • If the new disk is larger, extend the C: volume afterwards in Disk Management.
Bare-metal migration

🧬 Clone Your Disk Without Reinstalling Anything

Swapping an old hard drive for an SSD is the upgrade that most transforms an aging PC: boot drops from minutes to seconds and programs open almost instantly. The problem is that nobody wants to reinstall Windows, every program, every driver and every setting from scratch.

Cloning solves exactly that. And instead of tools that try to copy files while Windows is running — and fail with “Error 87” or freeze halfway — we’ll use Clonezilla, the method IT departments use to migrate whole machines.

M.2 NVMe SSD ready to receive the clone
The result: the new SSD becomes an exact replica of the old disk — same Windows, same programs, same files, same desktop wallpaper. You just swap the boot disk and carry on.
Publicidade
Concept

🧠 What Is “Bare-Metal” Cloning?

There are two ways to copy a disk. The first — the one most tutorials teach — is file copying: a program reads folder by folder inside the running Windows and copies everything to the new disk. It works, but it’s fragile: any locked file, special permission or cloud-synced folder can stall the process or corrupt the result.

The second way — the one we’ll use — is bare-metal (sector-by-sector) cloning. Instead of understanding “what files are”, Clonezilla treats the disk as what it really is: a sequence of raw data blocks. It copies that sequence, bit by bit, whether it’s a Windows file, the registry or the boot area. The result is an identical copy of the original disk, including the boot partitions Windows needs to start.

It’s called “bare-metal” because the destination becomes a replica of the source hardware’s data, with no dependency on any operating-system layer to work.

Spec sheet

📋 What Clonezilla Can Do

FeatureDetails
Cloning modesDisk-to-disk, disk-to-image (backup file) and image-to-disk (restore).
File systemsNTFS, FAT32, exFAT, ext2/3/4, Btrfs, XFS, HFS+ and many others.
Partition tablesSupports both MBR (older) and GPT (modern, used with UEFI).
Image compressiongzip, zstd (faster) or no compression at all.
Network cloningSave or restore images to remote servers via SSH, Samba (CIFS) or NFS.
Multicast (Clonezilla SE)Clones dozens of computers at once on the same network — popular in computer labs.
EncryptionCan protect the generated image with AES encryption.
Integrity checkCan verify, after cloning, that the image is intact and restorable.
Licence100% free and open-source, built on DRBL, Partclone, Partimage and udpcast.
Boot compatibilityWorks with Legacy BIOS and UEFI (Secure Boot may need to be temporarily disabled).

Today we’ll use only the most common mode — disk to disk — but it’s good to know you can also use Clonezilla as a full-image backup tool.

Five minutes that avoid headaches

✅ Before You Start: Checklist

  • Check the old disk’s health: if it’s already failing, cloning stresses it — copy your most important files first. See the 2-minute test that shows whether a drive is dying.
  • Fix file system errors first: run chkdsk C: /f so you don’t clone the corruption along with it — details in the CHKDSK guide.
  • Suspend BitLocker if it’s on: otherwise the new disk may ask for the recovery key on first boot. Command below.
  • Both disks connected at the same time: on laptops with a single slot, use a USB-to-SATA/NVMe adapter for the new drive.
  • Laptop plugged into power: a battery dying mid-clone is one of the worst ways to lose an afternoon.
Terminal (Administrator) — suspend BitLocker for one restart
manage-bde -protectors -disable C: -RebootCount 1

If you’re not sure whether BitLocker is active, see where to find your BitLocker recovery key — and note the key down before any disk change.

Publicidade
Phase 01 · Safe download

⚡ Getting Clonezilla From the Official Source

Why do native tools fail where Clonezilla succeeds? Tools that read Windows files abort the whole process at the first locked permission, minor corruption or cloud-synced folder. Clonezilla is a physical cloner: it ignores those problems and makes an identical, block-level copy.

Never download infrastructure tools from alternative download sites. Get the official image from the open-source project:

step by step
1. Go to: https://clonezilla.org/downloads.php
2. Choose the "stable" release
3. [CPU Architecture]: select "amd64"
4. [File Type]: select "iso"
5. Click Download

Save this ISO file (about 400 MB) in a safe folder. It’s the “engine” of the rescue USB stick we’ll create next.

Phase 02 · The master key

🔑 Preparing the USB Stick With Rufus

Windows can’t clone itself while its files and registry are in use. To get around that, we start the machine from an external environment, turning an ordinary USB stick into a migration tool with Rufus, a light, portable utility.

Bootable USB stick plugged into a computer
Use a USB stick of at least 4 GB. EVERYTHING on it will be permanently erased — copy your photos and documents off it before continuing!
Rufus configuration
1. Download Rufus from the official site: https://rufus.ie
2. Run it (no installation needed)
3. [Device]: make sure your USB stick is selected at the top
4. [Boot selection]: click SELECT and pick the Clonezilla ISO
5. [Partition scheme]: leave it on the default Rufus suggests
6. Click START
7. If it asks to download extra files (Syslinux/GRUB), click Yes
8. Choose "Write in ISO Image mode" and confirm (OK)

When the progress bar fills and the status changes to READY, your engineering USB stick is armed. You can close Rufus.

Phase 03 · Bare-metal cloning

🧪 Running Clonezilla

With both disks installed and the USB stick connected, turn the computer on while pressing the boot menu key (F8, F11, F12 or Del, depending on the motherboard) and choose the USB stick. From here the mouse doesn’t work — use only the arrow keys and Enter.

Computer firmware setup screen
Golden rule: the destination SSD MUST be the same size or larger than the source. Clonezilla refuses to copy to smaller disks to protect your data.
Clonezilla script — expert mode
1. Select "Clonezilla live (VGA/Default settings)"
2. Language: "en_US"
3. Keyboard: "Keep" the default layout
4. Select "Start Clonezilla"
5. MODE: "device-device" (disk to disk)
6. LEVEL: "Expert mode"
7. TYPE: "disk_to_local_disk"
8. SOURCE: select your OLD disk
9. TARGET: select the NEW disk
10. Advanced option: mark "-icds" (Space bar)
    -> skips the destination size check, useful when sizes differ by a few GB
11. Confirm by typing "y" and Enter when asked

Read the source and target lines carefully before confirming: choosing them the wrong way round copies the empty new disk over your old one. That is the only truly irreversible mistake in this whole process.

Post-clone tip: if the new SSD is larger, Windows will start thinking it has the old size. Right-click Start → Disk Management → right-click C: → Extend Volume to use the extra space.
Publicidade
When “Extend Volume” is greyed out

📐 Using the Extra Space on a Larger Disk

On many PCs, “Extend Volume” appears greyed out after cloning. The reason is almost always a small Recovery partition sitting right after C: — Windows can only extend into unallocated space that is immediately next to the volume.

  • The simplest option: in Clonezilla’s expert mode, pick the -k1 option (create the partition table proportionally), so partitions grow with the new disk from the start.
  • If you already cloned: the full video on the original post shows how to unlock the partition and extend C: without formatting.
  • Don’t delete partitions at random: the EFI partition is what makes Windows boot. When in doubt, leave the extra space for a separate D: drive for files.
Troubleshooting

🔧 Common Errors and How to Fix Them

ProblemWhat to do
Stuck at 0% or very slowUsually a USB 2.0 port instead of USB 3.0, or a poor-quality SATA cable or adapter. Change the port and, if possible, the disk cable.
Target SSD doesn’t show up in the listOften the storage controller in the firmware is set to RAID instead of AHCI. Change the SATA/NVMe mode to AHCI.
“Target is smaller than source” with a larger SSDThe common confusion between GB (base 1000) and GiB (base 1024) in manufacturers’ marketing. Leave a few GB of margin, or use -icds.
PC won’t boot after the cloneUsually a Legacy/UEFI boot mode mismatch, Secure Boot blocking the loader, or the boot order still pointing to the old disk.
Screen looks frozen on “Press Enter to continue”Normal — the wizard is just waiting for you to confirm that step. Press Enter.
Windows asks for a BitLocker key after cloningEnter the recovery key (Microsoft account → Devices) — and next time suspend BitLocker before cloning.
Old hard drive being replaced by an SSD

If Windows itself shows oddities after migrating, the free built-in repair tools are the next step: see SFC and DISM, the 2 commands that repair Windows. Prefer a graphical tool that runs inside Windows? Hasleo Disk Clone is a friendly alternative.

Frequently Asked Questions

FAQ

Do I need to format the new SSD before cloning?

No. Clonezilla overwrites the whole destination disk during the process — formatting first is redundant.

Does cloning shorten the SSD’s life?

Not noticeably. It’s a single large sequential write, very different from the accumulated wear of daily use.

Can I clone a larger hard drive to a smaller SSD?

Only if the space actually used fits on the SSD, and it requires extra steps. By default Clonezilla refuses, to protect your data — that’s the golden rule.

Do I need to remove the old disk after cloning?

It’s not mandatory. But if you leave both connected, enter the firmware and make sure the new SSD is the first boot disk — otherwise Windows may start from the old one.

Does it work on a laptop with an M.2 NVMe SSD?

Yes, as long as both disks are accessible at the same time. On laptops with a single disk slot, use an external USB adapter for one of them.

What if Windows won’t start after the clone?

First check that the boot mode (Legacy or UEFI) matches and that the EFI partition was copied — that explains most cases. Then check the boot order.

Test your knowledge

🎮 How much did you learn?

Once you pick an answer it locks in — reload the page to try again.

1. What is “bare-metal” cloning?

2. Which program do we use to create the boot USB stick?

3. What is the golden rule of cloning?

4. Do I need to format the new SSD before cloning?

5. The PC won’t start after cloning. What’s the most common cause?

Compartilhar

Esse conteúdo ajudou você?

Compartilha com alguém que também vai curtir — é rapidinho e ajuda muito o nosso trabalho a chegar em mais gente.

WhatsApp Facebook Telegram X

O Instagram não tem um botão de compartilhar direto pelo navegador — copie o link acima e cole numa Story ou no direct. 😉

Siga a Gente

Não perca nenhuma dica

Conteúdo novo toda semana — direto, técnico e sem enrolação.

Conhecimento só tem valor quando compartilhado.

Manter essa estrutura de laboratórios funcionando e produzir conteúdos de engenharia de forma totalmente gratuita e acessível exige tempo e dedicação diária à bancada. Esse guia salvou os seus arquivos? Você pode contribuir diretamente para manter o nosso trabalho independente forte. Apoie doando qualquer valor!

Quer apoiar a nossa bancada independente?

Tecnologia Moderna © 2026 — Conteúdo escrito por Ronaldo Cardoso. Todas as informações técnicas foram revisadas antes da publicação.

Fique Por Dentro de todas as Novidades

Canal com propósito de Compartilhar, Ajudar e Ampliar conhecimento de todos!

📬

Ronaldo aqui: E aí, para não perder nenhum conteúdo, se inscreva aqui que eu aviso você em primeira mão!

Nos Envie a Sua Dúvida para que possamos criar um conteúdo exclusivo para você, com base na sua dúvida! juntos podemos ensinar outras pessoas!

@2024 – Todos os Direitos Reservado. Desenhado e Desenvolvido por:  Grupo Interativa Marketing  & Technology Center Interativa Marketing