Commands & Directories Flashcards
Learning Linux
cd ..
Returns to previous directory
rm
Remove file
adduser
add new user
man “tool”
Opens man pages for the specified tool.
“tool” -h
Prints the help page of the tool.
apropos “keyword”
Searches through man pages’ descriptions for instances of a given keyword.
cat
Concatenate and print files.
whoami
Displays current username.
id
Returns user’s identity.
hostname
Sets or prints the name of the current host system.
uname
Prints operating system name.
pwd
Returns working directory name.
ifconfig
The ifconfig utility is used to assign or view an address to a network interface and/or configure network interface parameters.
ip
Ip is a utility to show or manipulate routing, network devices, interfaces, and tunnels.
netstat
Shows network status.
ss
Another utility to investigate sockets.
What does the ‘ps’ command do?
Shows process status.
What does the ‘who’ command do?
Displays who is logged in.
What does the ‘env’ command do?
Prints environment or sets and executes a command.
What does the ‘lsblk’ command do?
Lists block devices.
What does the ‘lsusb’ command do?
Lists USB devices.
What does the ‘lsof’ command do?
Lists opened files.
What does the ‘lspci’ command do?
Lists PCI devices.
What does the ‘sudo’ command do?
Execute command as a different user.
What does the ‘su’ command do?
Requests appropriate user credentials via PAM and switches to that user ID (the default user is the superuser). A shell is then executed.
What does the ‘useradd’ command do?
Creates a new user or update default new user information.
What does the ‘userdel’ command do?
Deletes a user account and related files.
What does the ‘usermod’ command do?
Modifies a user account.
What does the ‘addgroup’ command do?
Adds a group to the system.
What does the ‘delgroup’ command do?
Removes a group from the system.
What does the ‘passwd’ command do?
Changes user password.
What does the ‘dpkg’ command do?
Install, remove and configure Debian-based packages.
What does the ‘apt’ command do?
High-level package management command-line utility.
What does the ‘aptitude’ command do?
Alternative to apt.
What does the ‘snap’ command do?
Install, remove and configure snap packages.
What is ‘gem’?
Standard package manager for Ruby.
What is ‘pip’?
Standard package manager for Python.
What is ‘git’?
Revision control system command-line utility.
What is ‘systemctl’?
Command-line based service and systemd control manager.
What does ‘ps’ do?
Prints a snapshot of the current processes.
What is ‘journalctl’?
Query the systemd journal.
What does ‘kill’ do?
Sends a signal to a process.
What does ‘bg’ do?
Puts a process into background.
What does ‘jobs’ do?
Lists all processes that are running in the background.
What does ‘fg’ do?
Puts a process into the foreground.
What is ‘curl’?
Command-line utility to transfer data from or to a server.
What is ‘wget’?
An alternative to curl that downloads files from FTP or HTTP(s) server.
What does ‘python3 -m http.server’ do?
Starts a Python3 web server on TCP port 8000.
What does ‘ls’ do?
Lists directory contents.
What does ‘cd’ do?
Changes the directory.
What does ‘clear’ do?
Clears the terminal.
What does ‘touch’ do?
Creates an empty file.
What does ‘mkdir’ do?
Creates a directory.
What does ‘tree’ do?
Lists the contents of a directory recursively.
What does ‘mv’ do?
Move or rename files or directories.
What does ‘cp’ do?
Copy files or directories.
What is ‘nano’?
Terminal based text editor.
What does ‘which’ return?
Returns the path to a file or link.
What does ‘find’ do?
Searches for files in a directory hierarchy.
What does ‘updatedb’ do?
Updates the locale database for existing contents on the system.
What does ‘locate’ do?
Uses the locale database to find contents on the system.
What is ‘more’?
Pager that is used to read STDOUT or files.
What is ‘less’?
An alternative to more with more features.
What does ‘head’ do?
Prints the first ten lines of STDOUT or a file.
What does ‘tail’ do?
Prints the last ten lines of STDOUT or a file.
What does ‘sort’ do?
Sorts the contents of STDOUT or a file.
What does ‘grep’ do?
Searches for specific results that contain given patterns.
What does ‘cut’ do?
Removes sections from each line of files.
What does ‘tr’ do?
Replaces certain characters.
What is ‘column’?
Command-line based utility that formats its input into multiple columns.
What is ‘awk’?
Pattern scanning and processing language.
What is ‘sed’?
A stream editor for filtering and transforming text.
What does ‘wc’ do?
Prints newline, word, and byte counts for a given input.
What does ‘chmod’ do?
Changes permission of a file or directory.
What does ‘chown’ do?
Changes the owner and group of a file or directory.
What is the root “/ (FSH)” filesystem?
The top-level directory that contains all files required to boot the operating system before other filesystems are mounted.
What does the /bin directory contain?
Essential command binaries.
What is found in the /boot directory?
The static bootloader, kernel executable, and files required to boot the Linux OS.
What is the purpose of the /dev directory?
Contains device files to facilitate access to every hardware device attached to the system.
What type of files are stored in the /etc directory?
Local system configuration files and configuration files for installed applications.
What is the /home directory used for?
Each user on the system has a subdirectory here for storage.
What does the /lib directory contain?
Shared library files that are required for system boot.
What is the purpose of the /media directory?
External removable media devices such as USB drives are mounted here.
What is the /mnt directory used for?
Temporary mount point for regular filesystems.
What type of files can be found in the /opt directory?
Optional files such as third-party tools.
What is the /root directory?
The home directory for the root user.
What does the /sbin directory contain?
Executables used for system administration (binary system files).
What is the purpose of the /tmp directory?
Used to store temporary files, generally cleared upon system boot.
What is contained in the /usr directory?
Executables, libraries, man files, etc.
What type of data is stored in the /var directory?
Variable data files such as log files, email in-boxes, web application related files, cron files, and more.
PS1
Can be changed to customize the CLI, such as to display the IP address, date, time, and the success or failure of the last command.