网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
The operator needs to change the /test filesystem in the testvg volume group so that it mounts automatically following a system reboot. Which of the following commands is correct?()

A. chvg -a y testvg

B. chfs -A yes /test

C. mount /test -auto=yes

D. chlv -a automount=y testlv


参考答案

更多 “ The operator needs to change the /test filesystem in the testvg volume group so that it mounts automatically following a system reboot. Which of the following commands is correct?() A. chvg -a y testvgB. chfs -A yes /testC. mount /test -auto=yesD. chlv -a automount=y testlv ” 相关考题
考题 在下面的运算符重载函数的原型中,错误的是A.Volume operator-(double,double);B.double Volume::operator-(double);C.Volume Volume::operator-(Volume);D.Volume operator-(Volume,Volume);

考题 You’re going to have a quiz ( )by another two in the ( )month. A. followed,followedB. followed,followingC. following,followedD. following,following

考题 在下面的运算符重载函数的原型中,错误的是______ 。A.Volume operator-(double,double);B.double Volume:: operator-(double);C.Volume Volume:: operator-(Volume);D.Volume operator-(Volume,Volume);

考题 下列运算符重载函数的原型错误的是( )。A.Volume operator-(double,double);B.double Volume::operator-(double);C.Volume Volume::operator-(Volume);D.Volume operator-(Volume,Volume);

考题 Asystemadministratorusedthesavevgcommandtobackupthetestvgeachnight.Thereisnowarequirementtoexcludethe/test/staticfilesystemfromthebackup.Howcanthisbeaccomplished?() A.Usethe-XflagonthesavevgcommandB.Putanentryinthe/etc/exclude.testvgfileC.Removethe/test/staticentriesfromthe/vgdata/testvg.datafileD.Usethetouchcommandtocreate/test/static/.excludebeforeusingsavevg

考题 在下面的运算符重载函数的原型中,错误的是( )。A.Volume operator-(double,dpible);B.double Volume::operator-(double);C.Volume Volume::operator-(Volume);D.Volume operator-(Volume);

考题 在下面的运算符重载函数的原型中,错误的是( )。A.Volume operator-(double,double);B.double Volume::operator-(double);C.Volume Volume::operator-(Volume);D.Volume operator-(Volume,Volume);

考题 在下面的运算符重载函数的原型中,错误的是:A.volume operator-(double,double);B.double volume::operator-(double);C.volume volume ::operator-(volume);D.volume operator-(volume,volume);

考题 在下面的二目运算符重载函数的原型中,错误的是:A.volume operator-(double,double);B.double volume::operator-(double);C.volume volume ::operator-(volume);D.volume operator-(volume,volume);

考题 C++17中,构造路径对象正确的代码是A.namespace fs=std:filesystem; fs::path b{"C:/Users"}; b = b / "cyd";B.std::filesystem::path r{"C:Windows"}; r.append("System32");C.std::filesystem::path r{"C:Windows"}; r += "System32";D.std::filesystem::path p{"/home"}; r += "cyd";E.using fs=std:filesystem; fs::path p {"/home"}; p /= "cyd";