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 Samba with VFS module support.

相关考题:

There are many methods in the CPETT .One of them is the method that runs a Kernel as the load of a computer.So we call itA.Monitor methodB.Model methodC.Benchmark methodD.Physical method

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.

The kernel is the(66)of an operating system such as Windows98, Windows NT, Mac OS or Unix. The kernel provides basic services for the other parts of the operating system,(67)it possible for it to run several programs at once(multitasking), read and write files and connect to networks and peripherals. Applications and utility programs use the services provided by the kernel to provide practical business functionality.In operating systems such as Windows or most versions of Unix, the kernel(68)everything except application and utility programs.In microkernel operating systems such as Digital Unix and Apples forthcoming Mac OS Server, the kernel(69)supports only multitasking and memory management. Other services such as applications, utilities and the user interface support device drivers, API and graphics which all(70)outside the microkernel.A.nucleusB.centerC.coreD.heart

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"

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 loadB、conventional path load

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.netB、/etc/tunables/tuningC、/etc/tunables/lastbootD、/usr/samples/kernel/nextboot

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.

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 kernelC、 You need to load the USB modules for your existing modular kernel.D、 USB support is not available in Linux.

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 enabledB、Only the 64-bit kernel will be installed and enabledC、Both the 32-bit and 64-bit kernel will be installed and the 32-bit kernel will be enabledD、Both the 32-bit and 64-bit kernel will be installed and the 64-bit kernel will be enabled

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 systemB、The ability to install an AIX system on a Linux systemC、The ability to compile and run a Linux application on AIXD、The ability to compile and run an AIX application on Linux

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 -cB、lscfg -v sys0C、Check the /unix linkD、Check for JFS2 filesystems

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.

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.

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.

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.

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.

The file “file.txt” exists on the file system and contsins ASCII text.  Given:   try {   File f = new File(“file.txt”);    OutputStream out = new FileOutputStream(f, true);   }    catch (IOException) {}   What is the result?()A、 The code does not compile.B、 The code runs and no change is made to the file.C、 The code runs and sets the length of the file to 0.D、 An exception is thrown because the file is not closed.E、 The code runs and deletes the file from the file system.

Which statement is true regarding the Junos OS?()A、The Junos kernel is based on the Solaris operating system.B、The Junos kernel is based on the GNU Zebra operating system.C、The Junos kernel is completely original and not based on any other operating system.D、The Junos kernel is based on the FreeBSD UNIX operating system.

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.

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.

单选题Which of the following best describes what is meant by Linux Affinity on AIX?()AThe ability to install a Linux system on an AIX systemBThe ability to install an AIX system on a Linux systemCThe ability to compile and run a Linux application on AIXDThe ability to compile and run an AIX application on Linux

单选题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.

多选题Which two statements about Oracle Direct Network File System (NFS) are true?()AIt bypasses the OS file system cache.BA separate NFS interface is required for use across Linux, UNIX, and Windows platforms.CIt uses the operating system kernel NFS layer for user tasks and network communication modules.DFile systems need not be mounted by the kernel NFS system when being served through Direct NFS.EOracle Disk Manager can manage NFS on its own, without using the operating system kernel NFS driver.

单选题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.

单选题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 kernelC You need to load the USB modules for your existing modular kernel.D USB support is not available in Linux.

单选题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?()Adirect-path loadBconventional path load

单选题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.netB/etc/tunables/tuningC/etc/tunables/lastbootD/usr/samples/kernel/nextboot