过去两天我一直在尝试访问 RAID5 上的内容。虽然获取阵列详细信息时似乎有信息,但安装时却没有显示任何文件。
我首先组装 RAID:
root@ubuntu:/# mdadm --assemble /dev/md127
然后运行:
root@ubuntu:/# mdadm -D /dev/md127
这是上述命令的结果:
/dev/md127:
Version : 1.2
Creation Time : Tue May 16 12:47:50 2017
Raid Level : raid5
Array Size : 8775916032 (8369.37 GiB 8986.54 GB)
Used Dev Size : 2925305344 (2789.79 GiB 2995.51 GB)
Raid Devices : 4
Total Devices : 4
Persistence : Superblock is persistent
Intent Bitmap : Internal
Update Time : Wed May 17 11:55:37 2017
State : clean
Active Devices : 4
Working Devices : 4
Failed Devices : 0
Spare Devices : 0
Layout : left-symmetric
Chunk Size : 512K
Name : ubuntu:127 (local to host ubuntu)
UUID : 43de9318:faf37e33:ad6f7388:025ad6fa
Events : 4614
Number Major Minor RaidDevice State
0 8 5 0 active sync /dev/sda5
1 8 21 1 active sync /dev/sdb5
2 8 37 2 active sync /dev/sdc5
4 8 53 3 active sync /dev/sdd5
我希望你能帮助我。提前谢谢你。
答案1
这只是将 raid 阵列创建到设备中,并未真正安装它。
完成上述操作后,你需要将设备安装/dev/md127
到安装点
假设/dev/mount/test
存在:
mount /dev/md127 /dev/mount/test
然后文件将列在此目录下:
ls /dev/mount/test/
files
more files
lots of files
etc