Displaying 1 result from an estimated 1 matches for "egoodbrac1".
2009 Aug 21
0
bug :zpool create allow member driver as the raw drive of full partition
...RAW driver :
c0t0d0s0 (/dev/rdsk/c0t0d0s0) as the member driver of rpool.
Infact, solaris2 partition can be more then one in each Hard Disk, so we also can use the RAW driver like : c0t0d0p1 (/dev/rdsk/c0t0d0p1) ,c0t0d0p2 (/dev/rdsk/c0t0d0p2) as the member driver to create a new zpool :
Morpho at egoodbrac1:~# zpool create dpool raidz c0t0d0p1,c0t1d0,c0t2d0
This command can successful create a new raidz pool named dpool
and c0t0d0p1 means the RAW drive of the first solaris2 partition of the system disk (c0t0d0),c0t1d0 and c0t2d0 is another 2 RAW disk.
But ,If you understand , in logic the member dri...