010-160 Cheat Sheet 2026
The 30 highest-yield 010-160 facts, distilled from real exam questions. Print it, save it as a PDF, or study it here — free, no sign-up.
40 questions
60 min time limit
60% to pass
- What is the purpose of the `/etc/hostname` file on a Linux system? → It stores the system's hostname
- Which command finds files that were accessed more than 7 days ago? → find . -atime +7
- If you are in /home/user/docs and type 'cd ../..', where will you end up? → /home
- What does `ls -lh` display differently than `ls -l`? → It shows file sizes in human-readable units (KB, MB)
- A file has permissions -rwxr-x---. Which class has no access at all? → Others
- Which command would you use to see the password aging information for a user? → chage -l username
- Which command finds all files with the .conf extension under /etc? → find /etc -name '*.conf'
- Which command would display detailed information about a package using APT? → apt-cache show
- What is the purpose of running 'apt-get update'? → Refreshes the local package index from repositories
- What does a UID range of 1-999 (or 1-500 on older systems) typically represent? → System/service accounts
- What is the primary purpose of a user's primary group in Linux? → To set the default group ownership for files and directories the user creates.
- What is the purpose of swap space in a Linux system? → Act as virtual memory when RAM is full
- What is a dependency in the context of Linux package management? → A package required by another package to function correctly
- In bash, what does the double bracket [[ ... ]] provide compared to single bracket [ ... ]? → Double brackets support pattern matching and avoid word-splitting issues
- What signal number is used with `kill` to forcefully terminate a process that cannot be ignored? → 9
- What does `cat file1 file2 > output.txt` do? → Concatenates file1 and file2 and writes the result to output.txt
- Which directory stores downloaded .deb package files on a Debian-based system? → /var/cache/apt/archives/
- What does the `clear` command do in the terminal? → Clears the terminal screen display
- Which command is used to view the contents of a text file one screen at a time? → less
- What class of IPv4 address range is reserved for private networks and not routable on the public internet (e.g., 192.168.x.x)? → Private (RFC 1918)
- What does `unzip -l archive.zip` do? → Lists the contents of archive.zip without extracting
- Which license requires that patent rights held by contributors be granted to all users of the software? → Apache License 2.0
- Which tar option extracts files to a specific directory instead of the current one? → -C /path/to/dir
- After navigating from `/usr/share` to `/etc/systemd`, which command will take you back to `/usr/share`? → cd -
- Which command would you use to find out what type of shell you are currently running? → echo $SHELL
- What is the default umask value for a regular user on most Linux systems? → 0022
- Which command shows failed login attempts on a Linux system? → lastb
- Under which circumstance does the GNU Affero GPL (AGPL) require source code disclosure that the regular GPL does not? → When the software is run as a network service accessible to users
- How do you make a script file executable so it can be run as `./myscript.sh`? → chmod +x myscript.sh
- What does 'public domain' mean in the context of software? → Software for which the copyright has expired or been waived, allowing unrestricted use
Turn these facts into recall:
Was this helpful?