How to Create Partition for RAID in Linux/Unix

As discussed earlier, RAID is a utility which provide any system fault tolerance and good performance. Generally in Unix and Windows environment we mainly use three types of RAID’s i.e RAID 0, RAID 1 and RAID 5. Before configuring any RAID type in our UNIX system, firstly we have to create RAID partition for it.

 

How to Create Partition for RAID in Linux-Unix

 

Steps to Create Partition for RAID in Linux

 

We will use fdisk utility to create RAID partition in our Linux environment. Firstly we will create normal partition and then will convert those normal partitions into RAID partition. Below are the steps to be followed while making the partition for RAID.

 

1. Enter below command to start creating your disk partition.

fdisk /dev/sdb

Here we are using secondary disk /dev/sdb. You can also use the fdisk command with “l” to see partition table for your system.

fdisk -l

 

2. Now press “n” to create new partition and press enter.

fdisk command

 

3. Now in this step, you have to choose the size of your new partition. For example, we are choosing 100MB, so just enter +100M and press enter.

 

fdisk new

 

4. Now you can press “p” to display partition table and can see your newly created partition. Now following above steps create 3 such partitions.

 

5. Now to create partition for RAID you will have to change the partition ID to “fd” from “83”. For this just press “t” and select the partition number and then enter the RAID id “fd”. You can see this in below screenshot.

 

fdisk raid partition

You will have to change the partition ID for all three partition created by you. Now to see the change in partition ID just press “p” to print partition table.

 

RAID Partition Linux

 

6. Now press “w” to save this new partition table with RAID configuration and you can use ‘fdisk -l’ command to check these partition.

 

Hope you have understood how to create RAID partition in Linux. If you have any doubt or query, feel free to ask through your comments. If you like the post consider sharing it with others. For more such tutorials do let us know.

Buy me a coffeeBuy me a coffee

3 Comments

  1. Apurv Mahale June 21, 2013
    • ST June 22, 2013
  2. JAGA July 13, 2014

Leave a Reply to JAGA Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.