0,总结版做RAID丝滑小连招。
1,查看设备所作raid
arcconf getconfig 1 ld
2,删除controller 1上的array 0
arcconf delete 1 logicaldrive 0
3,查看控制器1的信息,目的是查看Physical ID查看硬盘的id和状态
arcconf list 1
4,在controller1上用0 0 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 11 槽位上的HDD组RAID10, ize为最大可用容量,如需指定大小,把max改成对应的大小即可。
arcconf create 1 logicaldrive max 10 0 0 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 11
1,查看arcconf识别到的所有控制器ID
./arcconf list
2,查看控制卡1信息
./arcconf list 1
3,查询RAID卡信息
./arcconf getconfig 1 ad
4,查询虚拟磁盘1信息 查看所作raid
./arcconf getconfig 1 ld
5,查询5槽位硬盘信息。
./arcconf getconfig 1 pd 0 5
6,查询ID为1的RAID卡固件/驱动版本。
./arcconf getversion 1
7,设置虚拟磁盘1为主引导设备
./arcconf SERBOOT 1 LOGICALDRIVE 0TYPE Primary
8,设置虚拟磁盘1为非引导设备
./arrconf SETBOOT 1 LOGICALDRIVE 0 TYPE None
9,设置物理磁盘6为辅助引导设备
./arcconf SETBOOT 1DEVICE 0 6 TYPE Secondary
10,初始化slot5硬盘。
./arrconf task start 1 device 0 5 secureerase
11,查询任务状态
./arcconf getstatus 1
12,设置后台重建任务优先级为“medium”并生效。
./arcconf setpriority 1 REBUILD MEDIUM
13,RAID卡模式说明
查询RAID卡工作模式。
./arcconf getconfig 1
设置RAID卡工作模式为“RAID”。
./arcconf setcontrollermode 1 3
14,设置逻辑磁盘/物理磁盘0启用缓存
命令格式
arcconf SETCACHE <Controller#> LOGICALDRIVE <LogicalDrive# | All> <logical mode> [noprompt]
arcconf SETCACHE <Controller#> DEVICEALL <policy> [noprompt]
./arcconf setcache 1 logicaldrive 0 con 设置逻辑磁盘0启用缓存
./arcconf setcache 1 deviceall 0 enable设置物理磁盘0启用缓存
15,设置SATA硬盘密码
设置slot 0的SATA硬盘的密码为“zte”。
./arcconf atapassword 1 set zte 0 0
清除slot 0的SATA硬盘密码。
./arcconf atapassword 1 clear zte 0 0
16,创建raid
创建raid1
在controller 1上用0 0和0 1槽位上的HDD组RAID1,size为最大可用容量,如需指定大小,把max改成对应的大小即可。
./arcconf create 1 logicaldrive max 1 0 0 0 1
创建raid0
在controller1上用0 0 槽位上的HDD组RAID0,size为最大可用容量,如需指定大小,把max改成对应的大小即可。
./arcconf create 1 logicaldrive max 0 0 0
创建raid5
在controller1上用0 0, 0 1, 0 2, 0 3 槽位上的HDD组RAID5,size为最大可用容量,如需指定大小,把max改成对应的大小即可。
./arcconf create 1 logicaldrive max 5 0 0 0 1 0 2 0 3
创建raid10
在controller1上用0 0 ,0 1 ,0 2 ,0 3,槽位上的HDD组RAID10, ize为最大可用容量,如需指定大小,把max改成对应的大小即可。
./arcconf create 1 logicaldrive max 10 0 0 0 1 0 2 0 3
17,删除RAID
删除controller 1上的array 2
./arcconf delete 1 logicaldrive 2
18,把 0 3 块硬盘设备为全局热备。
./arcconf setstate 1 device 0 3 hsp
查看全局热备是否添加成功
./arcconf getconfig 1 al
移除热备盘
./arcconf setstate 1 device 0 3 rdy
19,为array0【array0可以视为一个raid组】 添加局部热备盘
./arcconf setstate 1 device 0 11 hsp array 1 sparetype 2
20,硬盘点灯
./arcconf identify 1 device 0 21开启硬盘定位灯
./arcconf identify 1 logicaldriveI 1 time 5 点亮RAID组1中硬盘的定位指示灯5秒。
./arcconf identify 1 DEVICE 0 4 TIME 30 点亮4槽位硬盘的定位指示灯30秒。
./arcconf identify 1 all stop 所有槽位硬盘的定位指示灯熄灭。
./arcconf identify 1 0 4 stop 4槽位硬盘指示灯熄灭。
21,将slot5设置为直通
./arcconf uninit 1 0 5