|
By default the system comes with /dev/md0 created. I had created /dev/md1 before so I did not need to create it. All elements of Linux can be broken down into files so that a device like a RAID array ultimately is a file in Linux. When you use mknod it will create a device file in the /dev directory. the "b" shows that it is a block device, the "9" is the major number, in other words all RAID devices are of the "9" type. The "2" is the device number. You use the "2" to indicate /dev/md1 because the RAID devices start with "0", which makes it a little confusing. |
IP Logged
|