Home | 简体中文 | 繁体中文 | 杂文 | 打赏(Donations) | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 知乎专栏 | Search | Email

13.7. Device Management

13.7.1. Adding Devices to a Pool

# zpool add scoop mirror c0t1d0 c1t1d0
			

13.7.2. Onlining and Offlining Devices

13.7.2.1. Taking a Device Offline

# zpool offline tank c0t0d0
bringing device 'c0t0d0' offline
				

13.7.2.2. Bringing a Device Online

# zpool online tank c0t0d0
bringing device 'c0t0d0' online
				

13.7.3. Replacing Devices

You can replace a device in a storage pool by using the zpool replace command.

# zpool replace tank c0t0d0 c0t0d1
			

In the above example, the previous device, c0t0d0, is replaced by c0t0d1.