A system administrator has just migrated a system from AIX V.4 x to Aix V5.x. The system is up and running and appears to be functioning properly. The following error message was received when running lppchk -vbos.rte V =4 R is >4 bos.rte V>5bos.rte not i

题目

A system administrator has just migrated a system from AIX V.4 x to Aix V5.x. The system is up and running and appears to be functioning properly. The following error message was received when running lppchk -vbos.rte V =4 R is >4 bos.rte V>5bos.rte not installed. 5.1.0lslpp -l | grep bos.rte shows 5.1.0 Which of the following options is the most likely solution to this problem?()

A.bos.rte is corrupted and needs to be reinstalled.

B.The system administration needs to reboot the system.

C.The /root part of bos.rte was installed but not the user part. Reinstall the missing software.

D.The update CD needs to be applied with the smitty update_all command.


相似考题
更多“A system administrator has just migrated a system from AIX V.4 x to Aix V5.x. The system i ”相关问题
  • 第1题:

    Whatshouldanadministratordotosetuparequiredroleforauseridthatwillallowittostart/stopWPARsontheserver?()

    A.OnthedesiredWPAR:mkroleauthorizations=aix.wpar.systemnewRolesetkst-trolechuser roles=newRoledefault_roles=newRoleuser1

    B.Ontheglobalenvironment:mkroleauthorizations=aix.wpar.systemnewRolesetkst-trole chuserroles=newRoledefault_roles=newRoleuser1

    C.OnthedesiredWPAR:Editthe/etc/security/authorizationsfileadding:‘newRoleauthorizations=aix.wpar.system’setkst-trolechuserroles=newRoledefault_roles=newRoleuser1

    D.Ontheglobalenvironment:Editthe/etc/security/authorizationsfileadding:‘newRoleauthorizations=aix.wpar.system’setkst-trolechuserroles=newRoledefault_roles=newRoleuser1


    参考答案:B

  • 第2题:

    下列选项中,循环会无限执行的是______。

    A.int i = 1 ; while (i < 10) System .out .print(“ ” + i) ;

    B.for(int i = 1 ; i < 10 ;i ++) System .out .print(“ ” + i);

    C.for(int i = 10 ; i > 0 ;i --) System .out .print(“ ” + i);

    D.int i = 1 ; while (true) { System .out .print(“ ” + i); i ++ ; if (i > 5) break ;


    C

  • 第3题:

    【多选题】(4-3)初始了如下二维数组,()能够遍历该二维数组。 int [ ][ ] arr={{3,4,5},{7,8,2},{1},{6,2,8}};

    A.for(int i=0;i<arr.length;i++) for(int j=0;j<arr.length;j++) System.out.println(arr[i][j]);

    B.for(int i=0;i<arr.length;i++) for(int j=0;j<arr[i].length;j++) System.out.println(arr[i][j]);

    C.for(int i=0;i<arr.length;i++) for(int x:arr[i]) System.out.println(x);

    D.for(int list:arr) for(int x:list) System.out.println(x);

    E.for(int[ ] list:arr) for(int x:list) System.out.println(x);


    A

  • 第4题:

    下列程序使用系统标准输入System.in从键盘获得输入字符串,请选择正确的一项填入下列程序的横线处。 import java.io.*; public class ex26 { public static void main(String args[]) { byte buffer[] = new byte[128]; int n; try { n = for(int i = 0; i < n; i++) System.out .print ( (char)buffer [i] ); catch (IOException e) { System.out.print (e); } } }

    A.System.in.read(buffer)

    B.system.in.read(buffer)

    C.System.in.read0

    D.System.in(buffer)


    正确答案:A

  • 第5题:

    【分录题】写出以下程序运行结果。 public class Demo7 { public static void main(String[] args) { int i=1,j=0; int x=2; while(x<13) { for(;;) { if(i*j>10) break; i++; j++; } x=x+2; } System.out.println(x); System.out.println(i); System.out.println(j); } }


    B 本题考查带参数的宏的定义:“#defineADD(x)x+x”中x代表m+n,故s写成s=m+n+m+n*k=1+2+1+2*3=10。

  • 第6题:

    假设变量x的值为25,要输出x的值,以下正确的语句是()。

    A.System.Console.WriteLine(“x”)

    B.System.Console.WriteLine(x)

    C.System.Console.WriteLine(“x={0}”,x)

    D.System.Console.WriteLine(“x={x}”)


    C