The solution is still applicable, even if you're using RAID1 instead of Synology Hybrid RAID
(SHR). The only difference if you're using RAID1 is that you'll need to upgrade both drives, and keep them equal in size in order to maximize disk space.
As you mentioned you're using a 2-bay system, it won't make any difference anyway; the real benefit of SHR is when you're using 3+ disks, as they can be of different sizes and still minimize the wasted disk space.
Basically the procedure to upgrade a Synology is:
- Unplug one of the disks (and keep it in a safe place, in the case something goes wrong)
- Plug a new 3TB disk, and wait for it to rebuild the RAID1 (~ 1-2 days)
- Unplug the old 1TB and plug the second 3TB
- Wait for the RAID1 to be re-built (another 1-2 days)
- Go to Storage Manager and increase the volume size to 3TB
Done!
You still have a copy of your data on the 1TB disks, so if anything goes wrong, you can still recover the data manually. If that happens, it is strongly recommend that you do a full disk copy sector-by-sector (using dd on a Linux machine, or a tool like CloneZilla) before attempting recovery.
Despite the name, the Synology Hybrid RAID
technology is not really proprietary to Synology. It's just some clever use of Multiple Device
(MD) and Logical Volume Manager
(LVM2). So if you have an emergency, you can still plug the drives directly to a Linux machine and have fun using md/lvm. Both LVM and MD are open, stable, well documented and widely adopted.
Relevant documentation from synology: https://www.synology.com/en-global/knowledgebase/DSM/help/DSM/StorageManager/storage_pool_expand_replace_disk
– htaccess – 2019-08-26T22:22:13.813Useful addition: http://www.synology.com/us/support/tutorials/how_to_RAID.php#4.1
– András Szepesházi – 2013-03-04T10:37:14.2602Update worked perfectly, there was no need to expand the volume at the end of the procedure, as the NAS did that automatically. – András Szepesházi – 2013-04-05T10:44:16.937