Source: Based on an artice at thomas-krenn.com (german, english translation) and raid.wiki.kernel.org.
Use feature comparison websites like gh.de or pricegrabber.com to find a suitable device.
Check which drive is causing the degradation.
mdadm --examine /dev/sd[a-z] | egrep 'Event|/dev/sd'
sudo mdadm -D /dev/md0
where md0
is the virtual block device of the raid.
One line should read State : clean, degraded
.
sudo mdadm --manage /dev/md0 -a /dev/sdx
where sdx
is the new discrete block devices address.
This may take approximately 4-7 hours for a 2TB device.
sudo mdadm -D /dev/md0
should now yield State : clean
.