A.tctl -f /dev/rmt0.1 fsf 2 ; tar -xv file3
B.tctl -f /dev/rmt0.0 fsf 3 ; dd if=file3 pf =/dev/mt0.1
C.tctl -f /dev/rmt0.1 fsf 2 ; dd if=/dev/rmt0.1 of=file3
D.tctl -f /dev/rmt0.0 fsf 3 ; dd if=/dev/rmt0.1 of=file3
第1题:
You will want two trees about ten feet apart, from _____ to suspend your tent.
(A) there (C) which
(B) them (D) where
选D
可改写为you will want two tress about ten feet apart, to suspend your tent from.
只要有介词摆在空格之前,选项是which, them ,there ,where肯定是which
介词+which+动词不定式,整体做定语
第2题:
A.Using’diagmenu’command,setfcs1toDefined.
B.Using’oem_setup_env’and’rmdev-R’commands,setfcs1adapterto’Defined’state.
C.Using’diagmenu’command,setthefcs1statetoDefined
D.Using’oem_setup_env’and’rmdev-dl’commands,setthestateoffcs1toDefined
第3题:
在MySQL中,指定一个已存在的数据库作为当前工作数据库的命令是______。
A.USE
B.SELECT
C.CREATE
D.USING
第4题:
You will want two trees about ten feet apart, from _____ to suspend your tent.
(A) there (C) which
(B) them (D) where
选择D
可改写为you will want two tress about ten feet apart, to suspend your tent from.
只要有介词摆在空格之前,选项是which, them ,there ,where肯定是which
介词+which+动词不定式,整体做定语
第5题:
Whileusingthesmitinstall_removemenustoremovesomefilesetsonanAIX5.3server,asystemadministratornoticesthe/usrfilesystemisnowunnecessarilylarge.Whichofthefollowingactionswillreducethesizeofthe/usrfilesystem()
A.Backup,unmount,remove,recreateandrestorethefilesystem.
B.BootfrommksysbtapeandselectShrinkfilesystemsonrestore.
C.Unmount,rundefragfs/usrandthereducefs-sizen/usrcommands.
D.Updatethe/image.datafilewiththedesiredsizefor/usrandrebootthesystem.
第6题:
以下描述是否正确:多步构建允许在Dockerfile中使用多个FROM指令。两个FROM指令之间的所有指令会生产一个中间镜像,最后一个FROM指令之后的指令将生成最终镜像。中间镜像中的文件可以通过COPY --from=<image-number>指令拷贝,其中image-number为镜像编号,0为第一个基础镜像。没有被拷贝的文件都不会存在于最终生成的镜像,这样可以减小镜像大小,同时避免出现安全问题。