1. Which of the following commands kills the process with the PID 123 but allows the process to 'clean up' before exiting?
A) A. kill -PIPE 123 B) B. kill -KILL 123 C) C. kill -STOP 123 D) D. kill -TERM 123
2. What is the maximum niceness value that a regular user can assign to a process with the nice command when executing a new process?
A) A. 9 B) B. 19 C) C. 49 D) D. 99
3. Immediately after deleting 3 lines of text in vi and moving the cursor to a different line, which single character command will insert the deleted content below the current line?
A) A. i (lowercase) B) B. P (uppercase) C) C. p (lowercase) D) D. U (uppercase) E) E. u (lowercase)
4. A user accidentally created the subdirectory dir in his home directory. Which of the following commands will remove that directory?
A) A. rmdir '~/dir' B) B. rmdir '~/dir' C) C. rmdir ~/'dir' D) D. rmdir ~/dir E) E. rmdir ~/\dir
5. In compliance with the FHS, in which of the directories are man pages found?
A) A. /usr/share/man B) B. /opt/man C) C. /usr/doc/ D) D. /var/pkg/man E) E. /var/man
Leave a comment