Rootvg has just been mirrored to a second disk. Which of the following actions should be performed to boot the system off of either disk?()A.Extendvg to include both disks in the rootvgB.Copy the hd5 logical volume to hdisk1C.Run the bosboot and bootlist

题目
Rootvg has just been mirrored to a second disk. Which of the following actions should be performed to boot the system off of either disk?()

A.Extendvg to include both disks in the rootvg

B.Copy the hd5 logical volume to hdisk1

C.Run the bosboot and bootlist commands

D.Reset the dump device to /dev/sysdumpnull


相似考题
更多“Rootvg has just been mirrored to a second disk. Which of the following actions should be performed to boot the system off of either disk?() ”相关问题
  • 第1题:

    DOS的英文表示是()。

    A、Disk、Operating、System

    B、Daily、Operating、System

    C、Disk、Open、System

    D、Date、Open、System


    参考答案:A

  • 第2题:

    Boot.ini文件的操作系统部分,() 表示SCSI总线号。

    A.Rdisk(0)

    B.Disk(0)

    C.Partition(3)

    D.Partition(0)


    正确答案:B


  • 第3题:

    AsystemadministratorwillbemigratingaserverfromAIX5.1toAIX5.2andisuncertainiftheapplicationrunningontheserverwillfunctionproperlyafterthemigration.WhatisthefastestwaytoreturntothepreviousAIXleveliftheapplicationdoesnotwork?()

    A.UsebasemediatorestoresystemtoAIX5.1.

    B.Useanalt_disk_installandbootbacktotheAIX5.1rootvg.

    C.MakeamksysboftheoriginalAIXtorestorebacktotheAIX5.1level.

    D.PerformtheAIX5.2upgradeusingupdate_allwiththecommitoptionandrejectfilesetstoreturntoAIX5.1.


    参考答案:B

  • 第4题:

    2给出下面代码段,x处于( )范围时打印字符串“second”。 pubhc class forLoopStatement{ public static voidmain(String[]args){ int x=______;//给x赋值 if(x>0) {System.out.println("second"); } else if(x>-3) {System.out.println("second"); } else { System.out.printlnCthird"); } } }

    A.x>0

    B.x>-3

    C.x<=-3

    D.x<=0 & x>-3


    正确答案:D

  • 第5题:

    下列代码中 if(x>O){System.out.println("first");} elseif(x>-3){System.out.println("second");) else{System.out.println("third");) 要求打印字符串为“second”时,X的取值范围是( )。

    A.x<=0且x>-3

    B.x>0

    C.x>-3

    D.x<=-3


    正确答案:A
    A【解析】本题考查Java中的条件结构。条件语句根据判定条件的真假来决定执行哪一种操作。题目所给程序,如果x>0,则直接执行其后的System.out.println("first")语句,而不执行elseif等语句,当x<-0且x>-3时执行System.out.println("second")语句,所以选项A正确。当x为其他值时执行else语句。应该对Java的流程控制涉及的语句有所掌握,这些都是考试重点内容。

  • 第6题:

    给出下列代码片段: if(x>0){System.out.println("first");} else if(x>-3){System.out.println("second");} else{System.out.println("third");} 当x处于( )范围时打印字符串"second"。

    A.x>0

    B.x>-3

    C.-3<x<=0

    D.x<=-3


    正确答案:C