在终端中扩展 Apple RAID 5

在终端中扩展 Apple RAID 5

我有一台配备 Apple RAID 卡的 Mac Pro。我为它设置了三个 1.5TB 的硬盘。我最近用一个 3TB 的硬盘替换了一个硬盘,现在想扩展卷以满足新的容量。Apple 手册告诉我在终端中输入

$ sudo raidutil modify volume --expand -n volume -s size. 

我尝试过几次不同的组合,但都失败了。下面是我最后一次尝试。任何帮助都将不胜感激。

NYCretoucher-Remote:~ nisian$ sudo raidutil modify volume --expand -n volume R1V1 -s size 700
Required argument missing: '--size'


usage: raidutil <global-options> modify volume <required-arguments> <optional-arguments>
    global-options:
        [--controller <ControllerType> | -c <ControllerType>]
        [--terse | -t]
        [--verbose | -v]
        [--version | -V]
    --expand | -e
        required arguments:
            --name <VolumeName> | -n <VolumeName>
            --size <SizeToExpandVolume> | -s <SizeToExpandVolume>
        optional arguments:
            --raidset <RAIDSetName> | -r <RAIDSetName>
            --waitfortask | -W
    --move | -m
        required arguments:
            --names <VolumeName> | -n <VolumeName>
            --targetraidset <TargetRAIDSetName> | -t <TargetRAIDSetName>
            --raidset <RAIDSetName> | -r <RAIDSetName>
        optional arguments:
        --waitfortask | -W
    --rewrite | -w
        required arguments:
            --name <VolumeName> | -n <VolumeName>
        optional arguments:
            --priority <ServicePriority> | -p <ServicePriority>
            --raidset <RAIDSetName> | -r <RAIDSetName>
            --waitfortask | -W
    --verify | -v
        required arguments:
            --name <VolumeName> | -n <VolumeName>
        optional arguments:
            --priority <ServicePriority> | -p <ServicePriority>
            --raidset <RAIDSetName> | -r <RAIDSetName>
            --waitfortask | -W
NYCretoucher-Remote:~ nisian$ 

答案1

尝试这个: $ sudo raidutil modify volume --expand -n R1V1 -s 100%

相关内容