« April 2009 »
SunMonTueWedThuFriSat
   
1
2
4
5
6
10
11
12
13
14
15
17
18
20
21
23
24
25
26
27
29
30
  
       
Today
XML

Neat blogs

Navigation

Editing

Powered by Roller Weblogger.

statcounter.com

clustrmaps.com

Locations of visitors to this page

technorati.com

20090419 Sunday April 19, 2009
Spuds and drives are in, lets get a filesystem going!

Okay, the spuds and the drives work like a charm:

[root@ultralord ~]> format
Searching for disks...done


AVAILABLE DISK SELECTIONS:
       0. c0t1d0 <DEFAULT cyl 30391 alt 2 hd 255 sec 63>
          /pci@0,0/pci108e,5351@1f,2/disk@1,0
       1. c0t3d0 <DEFAULT cyl 38910 alt 2 hd 255 sec 126>
          /pci@0,0/pci108e,5351@1f,2/disk@3,0
       2. c0t4d0 <DEFAULT cyl 38910 alt 2 hd 255 sec 126>
          /pci@0,0/pci108e,5351@1f,2/disk@4,0
Specify disk (enter its number): ^D

I want to create a pool for building kernels:

[root@ultralord ~]> zpool create builds c0t3d0 c0t4d0
[root@ultralord ~]> df -h /builds
Filesystem             size   used  avail capacity  Mounted on
builds                 1.1T    19K   1.1T     1%    /builds

Hmm, while I like the space, these are 640G HDs. Wait, I didn't use raidz:

[root@ultralord ~]> zpool  destroy builds
[root@ultralord ~]> zpool create builds raidz c0t3d0 c0t4d0
[root@ultralord ~]> df -h /builds
Filesystem             size   used  avail capacity  Mounted on
builds                 587G    19K   587G     1%    /builds

Much better - now I need to get some source and let it rip!


Originally posted on Kool Aid Served Daily
Copyright (C) 2009, Kool Aid Served Daily