Which of the following files, located in the user home directory, is used to store the Bash history?
Which grep command will print only the lines that do not end with a / in the file foo?
Which signal is missing from the following command that is commonly used to instruct adaemon to reinitialize itself, including reading configuration files?
killall -s _______ daemon
What happens after issuing the command vi without any additional parameters?
Which command is used to add an empty group to the system? (Specify ONLY the command without any path or parameters.)
Which of the following commands can be used to extract content from a tar file?
After moving data to a new filesystem, how can the former path of the data be kept intact in order to avoid reconfiguration of existing applications? (Choose TWO correct answers.)
What is the output of the following command?
for token in a b c; do
echo -n ${token};
done
Which directory holds the files that configure the xinetd service when using several configuration files instead of an integrated configuration file? (Specify the full path to the directory.)
Which port is the default server port for the HTTPS protocol? (Specify the port number using digits.)
When starting a program with the nice command without any additional parameters, which nice level is set for the resulting process?
Which of the following commands will write a message to the terminals of all logged in users?
Creating a hard link to an ordinary file returns an error. What could be the reason for this?
Which of the following are valid stream redirection operators within Bash? (Choose THREE correct answers.)
How many IP-addresses can be used for unique hosts inside the IPv4 subnet 192.168.2.128/28? (Specify the number only without any additional information.)
Which SysV init configuration file should be modified to disable the ctrl-alt-delete key combination?
Which parameter must be passed to ifconfig to activate a previously inactive network interface? (Specify the parameter only without any command, path or additional options)
What is the lowest numbered unprivileged TCP port? (Specify the number in digits only.)
Which command is used in a Linux environment to create a new directory? (Specify ONLY the command without any path or parameters.)
Which of the following commands can be used to locate programs and their corresponding man pages and configuration files?
In which file, if present, must all users be listed that are allowed to use the cron scheduling system? (Specify the full name of the file, including path.)
To prevent a specific user from scheduling tasks with at, what should the administrator do?
Which of the followingcommand sets the Bash variable named TEST with the content FOO?
Which utility would be used to change how often a filesystem check is performed on an ext2 filesystem without losing any data stored on that filesystem?
What word is missing from the following SQL statement?
__________ count(*) from tablename;
(Please specify the missing word using lower-case letters only.)
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?
Which of the following commands will print the last 10 lines of a text file to the standard output?
Which command is used to sync the hardware clock to the system clock? (Specify ONLY the command without any path or parameters.)
Which of the following commands lists all currently installedpackages when using RPM package management?
Which of the following commands can be used to display the local routing table? (Choose TWO correct answers.)
What is the name of the simple graphical login manager that comes with a vanilla X11 installation? (Specify ONLY the command without any path or parameters.)
Given a file called birthdays containing lines like:
YYYY-MM-DD Name
1983-06-02 Tim
1995-12-17 Sue
Which command would you use to output the lines belonging to all people listed whose birthday is in May or June?
What is the maximum niceness value that a regular user can assign to a process with the nice command when executinga new process?
Which of the following characters can be combined with a separator string in order to read from the current input source until the separator string, which is on a separate line and withoutany trailing spaces, is reached?