Migrating your system disk to an SSD
Hardware
The mode of the SATA controller in the BIOS should be set to AHCI
, not IDE
; otherwise, Windows will use the wrong driver and you will have to go to the registry to fix the problem.
Also, your system should use a SATA III controller. Its predecessor, SATA II, handles only 300MBps, which is too slow for your SSD. Unfortunately, you might have to live with that speed if you have an on-board controller in a laptop.
The next step is partitioning. The best tool for partitioning is good old fdisk
and a pocket calculator, because you will need to specify size and boundaries of the partitions in terms of sector numbers. Table 1 shows an example partition table.
Table 1
Partitioning an SSD
Device | Boot | Start | End | Blocks | ID | System |
---|---|---|---|---|---|---|
/dev/sda1 |
* |
4096 |
3074047 |
1536000 |
7 |
HPFS/NTFS/exFAT |
/dev/sda2 |
3076096 |
212789247 |
104857600 |
7 |
HPFS/NTFS/exFAT |
|
/dev/sda3 |
213098496 |
240361471 |
13631488 |
7 |
HPFS/NTFS/exFAT |
|
/dev/sda4 |
240361472 |
781422767 |
270530648 |
5 |
Extended |
|
/dev/sda5 |
240365568 |
252948479 |
6291456 |
82 |
Linux Swap/Solaris |
|
/dev/sda6 |
252948480 |
781422767 |
264236120 |
83 |
Linux |
Partitioning
The start sector for each partition should be divisible by 4,096 without a remainder – for instance: 3,076,096/4,096 = 751. Note that if your partitions are organized in 4KB blocks and the start sectors fall at 4KB boundaries, you will end up with a small (4095-byte) gap between the end of one partition and the start of the next one. This gap is not a problem.
Copying
The next step is to copy the original disk. It is better to start by copying to an external disk, rather than copying directly to the SSD. If you copy to an external disk, any problems you have later will only affect the backup copy and won't trash the original source disk. The tool of choice is rsync
. Rsync needs a lot of command-line switches to preserve the access rights, time stamps, and other settings. Table 2 lists all the necessary options.
Table 2
Rsync Parameters
Option | Meaning |
---|---|
|
Transfer directories |
|
Preserve group |
|
Copy symlinks as symlinks |
|
Preserve owner |
|
Preserve permissions |
|
Recurse into directories |
|
No space-splitting |
|
Preserve modification times |
|
Verbose |
|
Preserve ACLs |
|
Preserve hard links |
|
Preserve extended attributes |
It is a good idea to boot from a rescue CD or USB stick before you start the copy process; otherwise, you have to exclude the mountpoint of the target disk (or you will end up in an endless loop). Furthermore, you need to exclude /proc
, or virtual files like /proc/kcore
will turn into giant physical files. The command
$ rsync -rvlpogdstHEAX /original /copy
initiates the copy process.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.