A system administrator notices that one of the mirrored disks, hdisk7 on datavg, has had a hardware failure. What is the best method of recover without causing additional problems?()A.unmirrorvg datavg hdisk7 reducevg datavg hdisk7 replace the physical vo

题目
A system administrator notices that one of the mirrored disks, hdisk7 on datavg, has had a hardware failure. What is the best method of recover without causing additional problems?()

A.unmirrorvg datavg hdisk7 reducevg datavg hdisk7 replace the physical volume, run cfgmgr extendvg datavg hdisk7 mirrovg datavg hdisk7

B.varyoffvg datavg Rmdev -l hdisk7 -d Replace the physical volu,e run cfgmgr The system will automatically remirror when the disk is replaced

C.unmirrorvg datavg hdisk7 rmdev -l hdisk7 - d replace the physical volume, run cfgmgr extendvg datavg hdisk7 The system will automatically remirror when the disk is replaced.

D.unmirrorvg datavg hdisk7 reducevg data hdisk7 rmdev -l hdisk7 -d replace the physical volume, run cfgmgr extendvg datavg hdisk7 mirrovg datavg


相似考题
更多“A system administrator notices that one of the mirrored disks, hdisk7 on datavg, has had a hardware failure. What is the best method of recover without causing additional problems?() ”相关问题
  • 第1题:

    下面程序的输出结果是( )。 public class Sun { public static void main(String args[ ]) { int i = 1; switch (i) { case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2; System.out.println("two"); default: System.out.println("default"); } } }

    A.one

    B.one,default

    C.one,two,default

    D.default


    正确答案:C
    解析:该题考查对switch-case-break的理解。每个分支语句后面必须有break语句,否则程序向下执行,直到遇到break语句或程序结束。所以,该题i=1时执行case1分支语句,而case1分支语句后没有break语句,程序继续向下执行case2分支语句和 default分支语句。A只执行了case 1;B只执行了case 1和default;C;只执行了default。故本题的正确答案是C。

  • 第2题:

    When William hurried home, he found that his mother ____already ____to hospital.

    A、has; been sent

    B、had; sent

    C、has; sent

    D、had; been sent


    正确答案:D

  • 第3题:

    下面程序的输出结果是( )。 public class Sun { public static void main(String args[ ]) { int i = 1; switch (i) { case 0: System.but.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); default: System.out.println ("default"); } } }

    A.one

    B.one, default

    C.one, two, default

    D.default


    正确答案:C
    解析:该题考查对switch-case-break的理解。每个分支语句后面必须有break语句,否则程序向下执行,直到遇到break语句或程序结束。所以,该题i=1时执行casel分支语句,而casel分支语句后没有break语句,程序继续向下执行case2分支语句和 default分支语句。A只执行了case 1:B只执行了casel和default;C:只执行了default。故本题的正确答案是C。

  • 第4题:

    He said that he ______ already _______ the English film.

    A. has; seen

    B. has; see

    C. had; seen


    参考答案:C

  • 第5题:

    He is one of the students who , I am sure, always do _____ best.

    A. his

    B. one's

    C. my

    D. their


    正确答案:D

  • 第6题:

    编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }

    A.one,

    B.one,two,

    C.one,two,default

    D.default


    正确答案:C