- What is a file system?
A software implementation of the way data is stored on and retrieved from a physical medium.
- Which Linux specific file systems are most common?
- True of false: multiple file system implementations can be used concurrently on Linux?
True; the root file system is always a single type, but different parts of the file system tree can be used to mount other file system types on.
- What is the journaling feature present on most Linux file system implementations?
Journaling is the mechanism which ensures writes to disks cannot fail halfway. It greatly improves reliability of the file system.
- On which point in the tree is the root file system mounted?
At the highest point, on /.
- What is the PATH variable used for?
It is used to determine from which directory binaries can be used. You can check the contents of the PATH variable with the command 'echo $PATH'.
- In which top-level directory are configuration files stored according to the Filesystem Hierarchy Standard?
In /etc/.
- Where are process logs commonly saved?
In /var/log/.
- How many file types does Linux have?
7
- How does the Bash autocomplete function work?
For commands that support the autocomplete function, you can use TAB once to get the correct argument (if there is a single possibility), or TAB twice for a list of possible arguments.