Skip to main content

How to Replace a Failing Hard Drive in a ZFS System

I ordered a new Seagate Skyhawk 4TB hard drive. While waiting for it to arrive, I thought I could write a post about how to replace a failing old  drive in a ZFS system like mine. 

The first thing to do is get as much information about the system hard drives. I'll need information on the drives.

#ls -la /dev/disk/by-id        #to list all my drives with their model and numbers


donato@donato-ubuntu:~$ ls -la /dev/disk/by-id  total 0  drwxr-xr-x 2 root root 720 Aug  3 12:34 .  drwxr-xr-x 8 root root 160 Aug  3 12:34 ..  lrwxrwxrwx 1 root root   9 Aug  3 12:34 ata-Crucial_CT240M500SSD1_14210C259405 -> ../../sda  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-Crucial_CT240M500SSD1_14210C259405-part1 -> ../../sda1  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-Crucial_CT240M500SSD1_14210C259405-part2 -> ../../sda2  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-Crucial_CT240M500SSD1_14210C259405-part3 -> ../../sda3  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-Crucial_CT240M500SSD1_14210C259405-part4 -> ../../sda4  lrwxrwxrwx 1 root root   9 Aug  3 12:34 ata-ST2000DM001-1CH164_W1E8B1ZS -> ../../sdc  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-ST2000DM001-1CH164_W1E8B1ZS-part1 -> ../../sdc1  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-ST2000DM001-1CH164_W1E8B1ZS-part9 -> ../../sdc9  lrwxrwxrwx 1 root root   9 Aug  3 12:34 ata-ST2000DM001-1ER164_Z5600J73 -> ../../sde  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-ST2000DM001-1ER164_Z5600J73-part1 -> ../../sde1  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-ST2000DM001-1ER164_Z5600J73-part9 -> ../../sde9  lrwxrwxrwx 1 root root   9 Aug  3 12:34 ata-ST3000DM008-2DM166_Z50520KD -> ../../sdb  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-ST3000DM008-2DM166_Z50520KD-part1 -> ../../sdb1  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-ST3000DM008-2DM166_Z50520KD-part9 -> ../../sdb9  lrwxrwxrwx 1 root root   9 Aug  3 12:34 ata-ST31000524AS_5VP9CZC8 -> ../../sdd  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-ST31000524AS_5VP9CZC8-part1 -> ../../sdd1  lrwxrwxrwx 1 root root  10 Aug  3 12:34 ata-ST31000524AS_5VP9CZC8-part9 -> ../../sdd9  donato@donato-ubuntu:~$     

#zpool status dpool -v     #to get the status of the pool

#fdisk -l                  #list your disks

You can set the pool properties to automatically use replacement disk or expand to a larger size with:

# zpool set autoreplace=on poolname      #to set any new disk to replace old disk
# zpool set autoexpand=on poolname	 #to expand size of pool automatically 

Then:

# zpool offline poolname device  	 #to set old device offline

Remove the old / failed disk. 

Insert the replacement disk.

Run the replacement command:

# zpool replace poolname device

Bring the disk online with:

# zpool online poolname device

NOTE: that if you set the autoreplace property of the pool any new device found on the location will be formatted and used as replacement, but this might not work on your particular hardware.  Also, having the autoreplace property "off" is a good check whenever you make a mistake in naming the device.  That is why it is good practice to use the disk ID instead of the location. 


Comments

Popular posts from this blog

Mailvelope, Encryption for Webmail

Encryption is the topic of week. I wrote about it in a related post here. While encryption is a very good idea, doing it and doing it every day as part of your work flow is another thing. My view is that if you're already using an email client then it is easier, simpler and more convenient to adopt encryption. That is not the case if you're using a webmail service. If you are using the browser to check, compose and send your email, what are your options? The answer is: it's complicated. Looking for a way to do encryption with Google Chrome and Gmail, I found this. I also read that Google just released code for email encryption as open source. But it's a long way to being used by end users. The extension for Google Chrome works fine if the recipient also uses Google Chrome. But I went ahead and check this on Evolution.

Donald Trump Is The 45th President of the United States

     and he is preparing to move with his transition team into the Oval Office. His election is a shock to many political observers and the world in general. Donald Trump, the president-elect, ran against Hillary Clinton, former Secretary of State and for many the most qualified candidate for the presidency in many years. This has led to many post election analysis of how this upset happened. The numbers of votes for each candidate and the comparisons with previous presidential elections point to the fact that the white vote for Mr. Trump is solid all throughout but the minority and black votes did not come for Mrs. Clinton. This is what happened in crucial States like Michigan and Florida. The Republicans kept Congress and the Senate. It is quite notable that Russia and in particular, Vladimir Putin, is happy that they are going to talk to Mr. Trump rather than Mrs. Clinton. It is also a ...

Webapps in Unity

So it has been 4 months since Ubuntu 14.04 came out. This is LTS and supported for 6 years by Canonical. The first mobile device with Ubuntu pre-installed is promised to come out later this year, 2014. It's time to check out how the apps perform so far. It is a good idea. I use Gmail and Twitter and Facebook. Why not a webapp in a desktop? So I start the Twitter and Gmail webapp. So far it has crashed my computer 6 times. Not a very good sign. On the other hand it does work but not as stable as opening them in Firefox. -- Use my PGP key if you want to encrypt your replies/messages to me. You are invited to also send me your PGP keys so we can communicate in private.