While configuring a new adapter using cfgmgr, an administrator receives a warning message indicating that some device packages are not installed. Additionally, the adapter displays in the Defined state.Which command will resolve the issue and make the adapter available?()
A.shutdown -Fr
B.cfgmgr -i <lpp_source>
C.mkdev -l <device_name>
D.mknode /dev/<device_name>
第1题:
A.cfgmgr -a
B.cfgmgr -v
C.cfgmgr -x
D.cfgmgr -o
第2题:
A.reboot,mklvcopy,syncvg
B.cfgmgr-vlssar,chvg-va,syncvg
C.cfgmgr,extendvg,syncvg
D.extendvg,mklvcopy,syncvg
第3题:
第4题:
A.cfgmgr -f scsi5
B.cfgmgr -i scsi5
C.cfgmgr -t scsi5
D.cfgmgr -l scsi5
第5题:
8.
A. prints
B. borrows
C. sells
D. receives
第6题:
分析下面代码, 当调用 nPrint(“a”, 4)方法时会出现什么结果? static void nPrint(String message, int n) { while (n > 0) { System.out.print(message); n--; } }
A.aaaaa
B.aaaa
C.aaa
D.非法调用