单选题How is VFS (Virtual File System) support enabled in Samba?()ASamba does not support VFS.BCompile and load vfs.ko kernel module.CCompile and load vfs.ko and its dependent smbfs kernel modules.DCompile and load pvfs.ko kernel module.ECompile Samba with V

题目
单选题
How is VFS (Virtual File System) support enabled in Samba?()
A

 Samba does not support VFS.

B

 Compile and load vfs.ko kernel module.

C

 Compile and load vfs.ko and its dependent smbfs kernel modules.

D

 Compile and load pvfs.ko kernel module.

E

 Compile Samba with VFS module support.


相似考题
更多“单选题How is VFS (Virtual File System) support enabled in Samba?()A  Samba does not support VFS.B  Compile and load vfs.ko kernel module.C  Compile and load vfs.ko and its dependent smbfs kernel modules.D  Compile and load pvfs.ko kernel module.E  Compile Sa”相关问题
  • 第1题:

    Given: 35.String #name = "Jane Doe"; 36.int $age = 24; 37.Double _height = 123.5; 38.double ~temp = 37.5; Which two statements are true?()

    • A、Line 35 will not compile.
    • B、Line 36 will not compile.
    • C、Line 37 will not compile.
    • D、Line 38 will not compile.

    正确答案:A,D

  • 第2题:

    You are running Linux 2.0.36 and you need to add a USB mouse to your system. Which of the following statements is true?()

    • A、 You need to rebuild the kernel.
    • B、 You need to upgrade the kernel
    • C、 You need to load the USB modules for your existing modular kernel.
    • D、 USB support is not available in Linux.

    正确答案:B

  • 第3题:

    Which of the following best describes what is meant by Linux Affinity on AIX?()

    • A、The ability to install a Linux system on an AIX system
    • B、The ability to install an AIX system on a Linux system
    • C、The ability to compile and run a Linux application on AIX
    • D、The ability to compile and run an AIX application on Linux

    正确答案:C

  • 第4题:

    public class foo {  static String s;  public static void main (String[]args) {  system.out.printIn (“s=” + s);  } }  What is the result?()  

    • A、 The code compiles and “s=” is printed.
    • B、 The code compiles and “s=null” is printed.
    • C、 The code does not compile because string s is not initialized.
    • D、 The code does not compile because string s cannot be referenced.
    • E、 The code compiles, but a NullPointerException is thrown when toString is called.

    正确答案:B

  • 第5题:

    public class Plant {  private String name;  public Plant(String name) { this.name = name; }  public String getName() { return name; }  }  public class Tree extends Plant {  public void growFruit() { }  public void dropLeaves() { }  }  Which is true?() 

    • A、 The code will compile without changes.
    • B、 The code will compile if public Tree() { Plant(); } is added to the Tree class.
    • C、 The code will compile if public Plant() { Tree(); } is added to the Plant class.
    • D、 The code will compile if public Plant() { this(”fern”); } is added to the Plant class.
    • E、 The code will compile if public Plant() { Plant(”fern”); } is added to the Plant class.

    正确答案:D

  • 第6题:

    Which two statements about Oracle Direct Network File System (NFS) are true?()

    • A、It bypasses the OS file system cache.
    • B、A separate NFS interface is required for use across Linux, UNIX, and Windows platforms.
    • C、It uses the operating system kernel NFS layer for user tasks and network communication modules.
    • D、File systems need not be mounted by the kernel NFS system when being served through Direct NFS.
    • E、Oracle Disk Manager can manage NFS on its own, without using the operating system kernel NFS driver.

    正确答案:A,E

  • 第7题:

    单选题
    A system administrator is considering enabling the 64-bit kernel but first must determine if the system hardware will support 64-bit. How would this be accomplished in AIX 5L?()
    A

    prtconf -c

    B

    lscfg -v sys0

    C

    Check the /unix link

    D

    Check for JFS2 filesystems


    正确答案: A
    解析: 暂无解析

  • 第8题:

    单选题
    public class Plant {  private String name;  public Plant(String name) { this.name = name; }  public String getName() { return name; }  }  public class Tree extends Plant {  public void growFruit() { }  public void dropLeaves() { }  }  Which is true?()
    A

     The code will compile without changes.

    B

     The code will compile if public Tree() { Plant(); } is added to the Tree class.

    C

     The code will compile if public Plant() { Tree(); } is added to the Plant class.

    D

     The code will compile if public Plant() { this(”fern”); } is added to the Plant class.

    E

     The code will compile if public Plant() { Plant(”fern”); } is added to the Plant class.


    正确答案: C
    解析: 暂无解析

  • 第9题:

    单选题
    A system administrator is doing an AIX 5L New and Complete Overwrite installation on a system with a 64-bit processor using the default settings. Which of the following will be the resulting installed environment?()
    A

    Only the 32-bit kernel will be installed and enabled

    B

    Only the 64-bit kernel will be installed and enabled

    C

    Both the 32-bit and 64-bit kernel will be installed and the 32-bit kernel will be enabled

    D

    Both the 32-bit and 64-bit kernel will be installed and the 64-bit kernel will be enabled


    正确答案: C
    解析: 暂无解析

  • 第10题:

    单选题
    How is VFS (Virtual File System) support enabled in Samba?()
    A

     Samba does not support VFS.

    B

     Compile and load vfs.ko kernel module.

    C

     Compile and load vfs.ko and its dependent smbfs kernel modules.

    D

     Compile and load pvfs.ko kernel module.

    E

     Compile Samba with VFS module support.


    正确答案: D
    解析: 暂无解析

  • 第11题:

    单选题
    Consider the following class:     class Test(int i) {     void test(int i) {  System.out.println(“I am an int.”); }    void test(String s) {   System.out.println(“I am a string.”);     }          public static void main(String args) {    Test t=new Test();     char ch=“y”;    t.test(ch);     }      }     Which of the statements below is true?()
    A

     Line 5 will not compile, because void methods cannot be overridden.

    B

     Line 12 will not compile, because there is no version of test() that rakes a charargument.

    C

     The code will compile but will throw an exception at line 12.

    D

     The code will compile and produce the following output: I am an int.

    E

     The code will compile and produce the following output: I am a String.


    正确答案: D
    解析: 在第12行,16位长的char型变量ch在编译时会自动转化为一个32位长的int型,并在运行时传给void test(int i)方法。

  • 第12题:

    单选题
    What stanza file does a system administrator view to determine what kernel-tuning parameter changes were made when the system was last booted?()
    A

    /etc/rc.net

    B

    /etc/tunables/tuning

    C

    /etc/tunables/lastboot

    D

    /usr/samples/kernel/nextboot


    正确答案: B
    解析: 暂无解析

  • 第13题:

    How is VFS (Virtual File System) support enabled in Samba?()

    • A、 Samba does not support VFS.
    • B、 Compile and load vfs.ko kernel module.
    • C、 Compile and load vfs.ko and its dependent smbfs kernel modules.
    • D、 Compile and load pvfs.ko kernel module.
    • E、 Compile Samba with VFS module support.

    正确答案:E

  • 第14题:

    A system administrator is doing an AIX 5L New and Complete Overwrite installation on a system with a 64-bit processor using the default settings. Which of the following will be the resulting installed environment?()

    • A、Only the 32-bit kernel will be installed and enabled
    • B、Only the 64-bit kernel will be installed and enabled
    • C、Both the 32-bit and 64-bit kernel will be installed and the 32-bit kernel will be enabled
    • D、Both the 32-bit and 64-bit kernel will be installed and the 64-bit kernel will be enabled

    正确答案:C

  • 第15题:

    public class foo {  public static void main (String[]args) {  String s;  system.out.printIn (“s=” + s);  }  }   What is the result?()  

    • A、 The code compiles and “s=” is printed.
    • B、 The code compiles and “s=null” is printed.
    • C、 The code does not compile because string s is not initialized.
    • D、 The code does not compile because string s cannot be referenced.
    • E、 The code compiles, but a NullPointerException is thrown when toString is called.

    正确答案:C

  • 第16题:

    35.String #name="Jane Doe";36.int$age=24;37.Double_height=123.5;38.double~temp=37.5;Which two are true?()

    • A、Line 35 will not compile.
    • B、Line 36 will not compile.
    • C、Line 37 will not compile.
    • D、Line 38 will not compile.

    正确答案:A,D

  • 第17题:

    Consider the following class:     class Test(int i) {     void test(int i) {  System.out.println(“I am an int.”); }    void test(String s) {   System.out.println(“I am a string.”);     }          public static void main(String args) {    Test t=new Test();     char ch=“y”;    t.test(ch);     }      }     Which of the statements below is true?()

    • A、 Line 5 will not compile, because void methods cannot be overridden.
    • B、 Line 12 will not compile, because there is no version of test() that rakes a charargument.
    • C、 The code will compile but will throw an exception at line 12.
    • D、 The code will compile and produce the following output: I am an int.
    • E、 The code will compile and produce the following output: I am a String.

    正确答案:D

  • 第18题:

    Which two statements are true about the Oracle Direct Network File system (DNFS)?()

    • A、It utilizes the OS file system cache.
    • B、A traditional NFS mount is not required when using Direct NFS.
    • C、Oracle Disk Manager can manage NFS on its own, without using the operating kernel NFS driver.
    • D、Direct NFS is available only in UNIX platforms.
    • E、Direct NFS can load-balance I/O traffic across multiple network adapters.

    正确答案:C,E

  • 第19题:

    单选题
    Which of the following best describes what is meant by Linux Affinity on AIX?()
    A

    The ability to install a Linux system on an AIX system

    B

    The ability to install an AIX system on a Linux system

    C

    The ability to compile and run a Linux application on AIX

    D

    The ability to compile and run an AIX application on Linux


    正确答案: D
    解析: 暂无解析

  • 第20题:

    多选题
    Which two statements about Oracle Direct Network File System (NFS) are true?()
    A

    It bypasses the OS file system cache.

    B

    A separate NFS interface is required for use across Linux, UNIX, and Windows platforms.

    C

    It uses the operating system kernel NFS layer for user tasks and network communication modules.

    D

    File systems need not be mounted by the kernel NFS system when being served through Direct NFS.

    E

    Oracle Disk Manager can manage NFS on its own, without using the operating system kernel NFS driver.


    正确答案: E,A
    解析: 暂无解析

  • 第21题:

    单选题
    public class foo {   public static void main (Stringargs) {  String s;   system.out.printIn (“s=” + s);   }   }   What is the result?()
    A

     The code compiles and “s=” is printed.

    B

     The code compiles and “s=null” is printed.

    C

     The code does not compile because string s is not initialized.

    D

     The code does not compile because string s cannot be referenced.

    E

     The code compiles, but a NullPointerException is thrown when toString is called.


    正确答案: E
    解析: 暂无解析

  • 第22题:

    单选题
    You are running Linux 2.0.36 and you need to add a USB mouse to your system. Which of the following statements is true?()
    A

     You need to rebuild the kernel.

    B

     You need to upgrade the kernel

    C

     You need to load the USB modules for your existing modular kernel.

    D

     USB support is not available in Linux.


    正确答案: C
    解析: 暂无解析

  • 第23题:

    单选题
    SQL*Loader reads a set of records from a file, generates INSERT commands, and passes them to the Oracle kernel. Oracle then finds places for those records in free blocks in the table and updates any associated indexes. Which SQL*Loader mode is used in this scenario?()
    A

    direct-path load

    B

    conventional path load


    正确答案: A
    解析: 暂无解析

  • 第24题:

    单选题
    Which of the following actions will enable 64-bit applications on a system with  32-bit kernel()
    A

    Use smit load64bit to enable the 64-bit applications.

    B

    Re-install all applications with 64-bit versions.

    C

    Re-install the OS with 64-bit kernel enabled.

    D

    Change the kernel to 64bit, reboot, and then use the following command: chdev -l sys0 -a applications=64_bit


    正确答案: C
    解析: 暂无解析