Which of the following commands will copy one disk partition /dev/sda3 to /dev/sdb3?
A. dd if=/dev/sdb3 of =/dev/sda3 bs=4096 conv=notrunc
B. dd if=/dev/sda3 of=/dev/sdb3 bs=4096 conv=notrunc
C. ...
Which script, in the linux/scripts directory, can be used to add up grades or updated code to the 2.6.xx kernel source code?
A. patch
B. patch-kernel
C. kernel-update
D. upgrade-kernel
E. upgrade
After unpacking the source code for a Linux kernel, what is the first make command that should be run which will delete any current configuration and all generated files? This command will ensure that...
Which of these commands allows you to use shared libraries that are in /usr/local/lib?
A. export LD_PRELOAD=/usr/local/lib
B. export LD_LIBRARY_PATH=/usr/local/lib
C. ldconfig /usr/local/lib
D. ...
The mailserver is currently called fred, while the primary MX record points to mailhost.example.org.
What must be done to direct example.org email towards fred?
What is the difference between zImage and bzImage targets when compiling a kernel?
A. zImage is compressed using gzip, bzImage is compressed using bzip2
B. zImage is for 2.4 series kernels, bzImag...