A system administrator has an existing mksysb image, but would like to modify the image.data file on the mksysb before installing it on a system. Which of the following procedures is most appropriate to perform?()A.Create a new image.data file and recreat

题目

A system administrator has an existing mksysb image, but would like to modify the image.data file on the mksysb before installing it on a system. Which of the following procedures is most appropriate to perform?()

A.Create a new image.data file and recreate the mksysb image.

B.Use the dd command to replace the image.data file on the mksysb tape.

C.Use the tctl command to palce the new image.data file on the mksysb tape.

D.Place the new image.data file on a diskette that will be road during the installation of the mksysb.


相似考题
更多“A system administrator has an existing mksysb image, but would like to modify the image.da ”相关问题
  • 第1题:

    An administrator wants to restore the /etc/resolv.conf file from a mksysb backup onto server1. After the mksysb is mounted in /mnt/backup/ from the local nim server.Which command should be run to restore the file?()

    A.tar -xvf /mnt/backup/server1.mksysb ./etc/resolv.conf

    B.restore -Tvf /mnt/backup/server1.mksysb ./etc/resolv.conf

    C.listvgbackup -f /mnt/backup/server1.mksysb -r ./etc/resolv.conf

    D.restorevgfiles -xrm /mnt/backup/server1.mksysb ./etc/resolv.conf


    参考答案:C

  • 第2题:

    Acompanyusesrawlogicalvolumes.Whichcommandcanbeusedtobackupthedataintherawlogicalvolumestoatape?()

    A.dd

    B.tar

    C.cpio

    D.mksysb


    参考答案:A

  • 第3题:

    使用snmptuil.exe 可以查看代理的 MiB对象,下列文本框内oid部分是( ).C:\ Users\Administrator> snmptuil get 192.168.1.31 public.1.3.6.1.2.1.1.3.0Variable=system.sysUpTime.0Value=TimeTicks 1268830

    A.192.168.1.31
    B.1.3.6.1.2.1.1.3.0
    C.system.sysUpTime.0
    D.TimeTicks 1268803

    答案:B
    解析:
    C:\>snmputil get 192.168.1.31 public .1.3.6.1.2.1.1.3.0public .1.3.6.1.2.1.1.3.0是指的系统开机时间多长。OID(对象标识符),是SNMP代理提供的具有唯一标识的键值。MIB(管理信息基)提供数字化OID到可读文本的映射。所有完全验证OID都有 .iso.org.dod.internet.private 开始,数字表达为: .1.3.6.4. 。几乎所有的OID都会跟上企业(.1)和由IANA(互联网编号分配中心分配的)唯一的厂商标号。 OID的相对格式,从企业值开始,略过所有的隐含地址。因此,可以用相对地址 enterprises.netapp.netappl.raid.diskSUmmary.diskSpaceCount.0 来表示上述的OID,或者用数字格式 .1.789.6.4.8.0 .某些唯一键值,可用多个实例表示,这样所有的OID都以实例值结尾。因此可以看到大多数OID都是以一个 .0 结尾的。

  • 第4题:

    Howcanadirectorybeexcludedfromamksysbbackupofthefollowing?()

    A.Putanentryinthe/etc/exclude.rootvgfile

    B.Putanentryinthe/etc/mksysb.excludefile

    C.Removethedirectory’sentryfromthemksysb/image.datafile

    D.Removethedirectory’sentryfromthe/var/adm/ras/bosinst.datafile


    参考答案:A

  • 第5题:

    Which command can be used to show volume group information about filesystems and OS levels for a specified mksysb called server1.mksysb?()

    A.lsmksysb -lf server1.mksysb

    B.restore -mrT server1.mksysb

    C.listbackup -fT server1.mksysb

    D.listvgbackup -l server1.mksysb


    参考答案:A

  • 第6题:

    14、下面程序段执行后的输出是 。 public class Array____Ex { public static void main(String[] args) { int[] a=new int[1]; modify(a); System.out.println("a[0]="+a[0]); } public static void modify(int[] a) { a[0]++; } }


    A