Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1.  
  2. Configuring the Stripe Set
  3.  
  4. To implement RAID-0, follow these steps:
  5.  
  6. Invoke DiskPart by typing diskpart at the command prompt.
  7.  
  8. List the disks on the computer, check the free space, and ensure that the disks you want to work with are all configured as dynamic disks, as follows:
  9.  
  10. DISKPART> list disk
  11.  
  12. Create the stripe set as follows:
  13.  
  14. DISKPART> create volume stripe size=N disk=N,N,N,...
  15.  
  16. where size=N is the amount of space in megabytes that the volume will use on each disk. If no size is given, DiskPart uses all the remaining free space on the smallest disk and then uses the same amount of space on the remaining disks. disk=N,N,N,... sets the disks onto which the volume should be striped. You need to use at least two dynamic disks.
  17.  
  18. Consider the following examples:
  19.  
  20. Create a striped volume on disks 0, 1, and 2 using all available space on the smallest disk and then using the same amount of space on the remaining disks:
  21.  
  22. create volume stripe disk=0,1,2
  23.  
  24. Create a striped volume on disks 0, 1, and 2 using 4 GB (4096 MB) of space on each disk:
  25.  
  26. create volume stripe size=4096 disk=0,1,2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement