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 hdisk7B.varyoffvg datavg Rmdev -l hdisk7 -d Replace the physical volu,e run cfgmgr The system will automatically remirror when the disk is replacedC.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?()
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
相关考题:
下面程序的输出结果是( )。 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.oneB.one,defaultC.one,two,defaultD.default
When William hurried home, he found that his mother ____already ____to hospital.A、has; been sentB、had; sentC、has; sentD、had; been sent
下面程序的输出结果是( )。 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.oneB.one, defaultC.one, two, defaultD.default
编译和执行以下代码,输出结果是( )。 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,defaultD.default