I would like to change the filesystem of my RAID-0 from ext3 to xfs. I use Centos.
Do I have to remove the RAID first using mdadm? Or can I just change it? How to do that? I don't need to preserve the data.
Thanks
|
1
|
I would like to change the filesystem of my RAID-0 from ext3 to xfs. I use Centos. Do I have to remove the RAID first using mdadm? Or can I just change it? How to do that? I don't need to preserve the data. Thanks |
||||
|
|
|
As BobbyShaftoe said, RAID works on the block device level (the actual sectors of the disk) rather than at the file system. The fact that you are using RAID does not matter, so you just need to know how to reformat with the new file system. Use |
||
|
|
|
|
If you would like to keep the RAID block device as RAID 0, you can just format the block device to the new filesystem(of course effectively losing any existing filesystem). Find out the device name of the block, such as /dev/md0, and then do a mkfs. First make sure you unmount the device if it is mounted:
then format it
There are other options you can set, check the man pages. You may also want to double check your /etc/fstab , and update the filesystem type and/or mount point, if you're changing that as well. You can then remount the device and you should have a nice and clean filesystem.
|
||
|
|