Difference between revisions of "FreeBSD striping"

From Teknologisk videncenter
Jump to: navigation, search
m (Example)
m
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
 
df
 
df
 
</source>
 
</source>
{{#css:
+
=Links=
   
+
*[http://onlamp.com/pub/a/bsd/2005/11/10/FreeBSD_Basics.html Software RAID 1 on FreeBSD]
    pre {   font-weight: bold; font-size: 150%; color: #00FF00; background: black; margin: 10px 100px;}
+
{{Source cli}}
}}
 
 
[[Category:UNIX]][[Category:FreeBSD]]
 
[[Category:UNIX]][[Category:FreeBSD]]

Latest revision as of 08:36, 13 June 2010

Example

kldload geom_stripe
mkdir /stripe
gstripe label -v st0 /dev/da1 /dev/da2 /dev/da3 /dev/da4 /dev/da5
bsdlabel -wB /dev/stripe/st0
newfs -U /dev/stripe/st0
mount /dev/stripe/st0 /stripe
df

Links