Commands & Directories Flashcards

Learning Linux

1
Q

cd ..

A

Returns to previous directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

rm

A

Remove file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

adduser

A

add new user

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

man “tool”

A

Opens man pages for the specified tool.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

“tool” -h

A

Prints the help page of the tool.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

apropos “keyword”

A

Searches through man pages’ descriptions for instances of a given keyword.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

cat

A

Concatenate and print files.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

whoami

A

Displays current username.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

id

A

Returns user’s identity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

hostname

A

Sets or prints the name of the current host system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

uname

A

Prints operating system name.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

pwd

A

Returns working directory name.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

ifconfig

A

The ifconfig utility is used to assign or view an address to a network interface and/or configure network interface parameters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

ip

A

Ip is a utility to show or manipulate routing, network devices, interfaces, and tunnels.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

netstat

A

Shows network status.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

ss

A

Another utility to investigate sockets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What does the ‘ps’ command do?

A

Shows process status.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What does the ‘who’ command do?

A

Displays who is logged in.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What does the ‘env’ command do?

A

Prints environment or sets and executes a command.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What does the ‘lsblk’ command do?

A

Lists block devices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What does the ‘lsusb’ command do?

A

Lists USB devices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What does the ‘lsof’ command do?

A

Lists opened files.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What does the ‘lspci’ command do?

A

Lists PCI devices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What does the ‘sudo’ command do?

A

Execute command as a different user.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

What does the ‘su’ command do?

A

Requests appropriate user credentials via PAM and switches to that user ID (the default user is the superuser). A shell is then executed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What does the ‘useradd’ command do?

A

Creates a new user or update default new user information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

What does the ‘userdel’ command do?

A

Deletes a user account and related files.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

What does the ‘usermod’ command do?

A

Modifies a user account.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

What does the ‘addgroup’ command do?

A

Adds a group to the system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

What does the ‘delgroup’ command do?

A

Removes a group from the system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

What does the ‘passwd’ command do?

A

Changes user password.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

What does the ‘dpkg’ command do?

A

Install, remove and configure Debian-based packages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

What does the ‘apt’ command do?

A

High-level package management command-line utility.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

What does the ‘aptitude’ command do?

A

Alternative to apt.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

What does the ‘snap’ command do?

A

Install, remove and configure snap packages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

What is ‘gem’?

A

Standard package manager for Ruby.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

What is ‘pip’?

A

Standard package manager for Python.

38
Q

What is ‘git’?

A

Revision control system command-line utility.

39
Q

What is ‘systemctl’?

A

Command-line based service and systemd control manager.

40
Q

What does ‘ps’ do?

A

Prints a snapshot of the current processes.

41
Q

What is ‘journalctl’?

A

Query the systemd journal.

42
Q

What does ‘kill’ do?

A

Sends a signal to a process.

43
Q

What does ‘bg’ do?

A

Puts a process into background.

44
Q

What does ‘jobs’ do?

A

Lists all processes that are running in the background.

45
Q

What does ‘fg’ do?

A

Puts a process into the foreground.

46
Q

What is ‘curl’?

A

Command-line utility to transfer data from or to a server.

47
Q

What is ‘wget’?

A

An alternative to curl that downloads files from FTP or HTTP(s) server.

48
Q

What does ‘python3 -m http.server’ do?

A

Starts a Python3 web server on TCP port 8000.

49
Q

What does ‘ls’ do?

A

Lists directory contents.

50
Q

What does ‘cd’ do?

A

Changes the directory.

51
Q

What does ‘clear’ do?

A

Clears the terminal.

52
Q

What does ‘touch’ do?

A

Creates an empty file.

53
Q

What does ‘mkdir’ do?

A

Creates a directory.

54
Q

What does ‘tree’ do?

A

Lists the contents of a directory recursively.

55
Q

What does ‘mv’ do?

A

Move or rename files or directories.

56
Q

What does ‘cp’ do?

A

Copy files or directories.

57
Q

What is ‘nano’?

A

Terminal based text editor.

58
Q

What does ‘which’ return?

A

Returns the path to a file or link.

59
Q

What does ‘find’ do?

A

Searches for files in a directory hierarchy.

60
Q

What does ‘updatedb’ do?

A

Updates the locale database for existing contents on the system.

61
Q

What does ‘locate’ do?

A

Uses the locale database to find contents on the system.

62
Q

What is ‘more’?

A

Pager that is used to read STDOUT or files.

63
Q

What is ‘less’?

A

An alternative to more with more features.

64
Q

What does ‘head’ do?

A

Prints the first ten lines of STDOUT or a file.

65
Q

What does ‘tail’ do?

A

Prints the last ten lines of STDOUT or a file.

66
Q

What does ‘sort’ do?

A

Sorts the contents of STDOUT or a file.

67
Q

What does ‘grep’ do?

A

Searches for specific results that contain given patterns.

68
Q

What does ‘cut’ do?

A

Removes sections from each line of files.

69
Q

What does ‘tr’ do?

A

Replaces certain characters.

70
Q

What is ‘column’?

A

Command-line based utility that formats its input into multiple columns.

71
Q

What is ‘awk’?

A

Pattern scanning and processing language.

72
Q

What is ‘sed’?

A

A stream editor for filtering and transforming text.

73
Q

What does ‘wc’ do?

A

Prints newline, word, and byte counts for a given input.

74
Q

What does ‘chmod’ do?

A

Changes permission of a file or directory.

75
Q

What does ‘chown’ do?

A

Changes the owner and group of a file or directory.

76
Q

What is the root “/ (FSH)” filesystem?

A

The top-level directory that contains all files required to boot the operating system before other filesystems are mounted.

77
Q

What does the /bin directory contain?

A

Essential command binaries.

78
Q

What is found in the /boot directory?

A

The static bootloader, kernel executable, and files required to boot the Linux OS.

79
Q

What is the purpose of the /dev directory?

A

Contains device files to facilitate access to every hardware device attached to the system.

80
Q

What type of files are stored in the /etc directory?

A

Local system configuration files and configuration files for installed applications.

81
Q

What is the /home directory used for?

A

Each user on the system has a subdirectory here for storage.

82
Q

What does the /lib directory contain?

A

Shared library files that are required for system boot.

83
Q

What is the purpose of the /media directory?

A

External removable media devices such as USB drives are mounted here.

84
Q

What is the /mnt directory used for?

A

Temporary mount point for regular filesystems.

85
Q

What type of files can be found in the /opt directory?

A

Optional files such as third-party tools.

86
Q

What is the /root directory?

A

The home directory for the root user.

87
Q

What does the /sbin directory contain?

A

Executables used for system administration (binary system files).

88
Q

What is the purpose of the /tmp directory?

A

Used to store temporary files, generally cleared upon system boot.

89
Q

What is contained in the /usr directory?

A

Executables, libraries, man files, etc.

90
Q

What type of data is stored in the /var directory?

A

Variable data files such as log files, email in-boxes, web application related files, cron files, and more.

91
Q

PS1

A

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.