You find that a host (192.168.1.4) being used on one of your client's networks has been compromised with a backdoor program listening on port 31337. Your client requests a list of originating IP addre...
How can you manually add an entry to your system's ARP cache?
A. Directly edit /etc/arp-cache
B. Run add-arp hostname FF:FF:FF:FF:FF:FF
C. Run ping -a hostname
D. Run arp -s hostname FF:FF:FF:FF:FF:F...
You have finished updating and resolving dependencies for some source code. What command should you run before recompiling the code into binary form?
A. make clean
B. make all
C. make dep
D. make ins...
User Joseph has successfully extracted and compiled a program from source code. Installing the binaries produces errors. What is the most likely reason?
After unpacking source code, what file is used by configure to create a final Makefile?
A. configure.in
B. configure.ac
C. Makefile.in
D. Makefile.tmpl
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...