Unix/Linux: Fundamental Commands & Concepts

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/109

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

110 Terms

1
New cards

Multiuser Environment

A setup that allows multiple individuals to simultaneously connect and run applications on the same physical machine.

2
New cards

"Everything Is a File" Philosophy

A unifying model in which directories, text documents, hardware devices, and sockets are all accessed using read/write operations.

3
New cards

Kernel

The core software layer that governs process scheduling, memory management, and direct hardware interaction.

4
New cards

Shell

A command-line interface that accepts user input, runs programs, and can interpret scripts for task automation.

5
New cards

Standard Input (file descriptor 0)

The default location from which a process reads data, generally tied to the keyboard unless redirected.

6
New cards

Standard Output (file descriptor 1)

The typical destination for a program's results, usually displayed on the terminal unless sent to a file.

7
New cards

Standard Error (file descriptor 2)

The separate pathway used to display warnings or failures, enabling distinct handling of diagnostics.

8
New cards

File Descriptor

A small integer assigned by the operating system to each open file, stream, or network socket.

9
New cards

Absolute Path

A file or directory locator string that starts at the root slash and provides the exact chain of directories to reach the target.

10
New cards

Relative Path

A shorter locator interpreted from the current working directory, without beginning from the root slash.

11
New cards

/ (Root Directory)

The top-most point of the Unix filesystem, containing every other folder within its hierarchy.

12
New cards

Dot (.) and Dot-Dot (..)

Special entries inside any folder representing, respectively, the current directory and the parent directory one level above.

13
New cards

ls

Lists the contents of the specified directory (or the current one if not provided), optionally showing details.

14
New cards

cd

Updates the working directory to a user-supplied path, or moves to the home location if no argument is given.

15
New cards

pwd

Reveals the complete path from root to the directory where the session is currently operating.

16
New cards

mkdir

Establishes a new folder in the filesystem at a specified path, provided the user has sufficient permissions.

17
New cards

rmdir

Deletes a directory that is empty; for a non-empty folder, a more advanced approach is needed (like rm -r).

18
New cards

cp

Duplicates a file or directory into another name or path, preserving the original while creating a new copy.

19
New cards

mv

Either renames an item or relocates it into a different folder, without creating a separate copy.

20
New cards

rm

Eliminates files or, with additional flags (-r), removes directories recursively, clearing contents.

21
New cards

cat

Displays the contents of a file sequentially; often used to combine multiple text files into one stream.

22
New cards

more / less

Shows a file's text one screen at a time; the second form allows backward navigation and is more flexible.

23
New cards

head / tail

Prints either the first (head) or last (tail) ten lines of a file by default; numeric options adjust how many lines appear.

24
New cards

grep

Searches for text patterns in files or piped input, returning matching lines. Often combined with "-r" to scan directories.

25
New cards

sort / uniq

Reorders lines alphabetically or numerically (sort), and filters out adjacent duplicate lines (uniq).

26
New cards

diff

Compares two files line by line to highlight text differences and potential merges or patches.

27
New cards

locate / which / whereis

Tools to find file paths or discover the exact location of an executable; can help reveal whether certain commands are installed.

28
New cards

man / info

Launches manual pages or extended documentation describing command syntax, usage tips, and examples.

29
New cards

date / hostname

Retrieves the system's calendar/time setting or prints the machine's network identifier.

30
New cards

write / mesg

The first allows direct text communication with another logged-in user, while the second toggles acceptance of those messages.

31
New cards

Owner (User), Group, Others

Three distinct categories that define who can read, modify, or execute an object—each category may have different rights.

32
New cards

Read, Write, Execute (r, w, x)

Symbols representing the ability to view file contents, alter them, or run the file as a program (or traverse a directory).

33
New cards

chmod

Adjusts who can do what to a file or directory using either symbolic (u, g, o) or numeric (octal) notation.

34
New cards

chown / chgrp

Transfers a file's ownership to a different user (chown) or changes which group is recognized as the primary group for that file (chgrp).

35
New cards

Octal Permission Representation

A three-digit base-8 number that encodes read, write, and execute bits for each category, e.g., 755 means full control for the owner but read-execute for others.

36
New cards

Sticky Bit

A special permission bit on directories that restricts file deletion so that only the file's owner (or directory owner) can remove it.

37
New cards

SUID, SGID

Flags that let an executable run with the permissions of its owner or group, regardless of who launched it.

38
New cards

umask

A command controlling which default permissions are turned off when a new file or folder is created.

39
New cards

ps

Lists running processes, allowing you to see IDs, owners, CPU usage, controlling terminals, etc.

40
New cards

top

Continuously updates and displays processes ranked by resource consumption, with interactive commands to kill or renice tasks.

41
New cards

free

Reports memory usage, including how much physical and swap space is free or allocated.

42
New cards

kill / killall

Sends signals (like TERM or KILL) to processes, identified by PID or by name, requesting graceful or immediate termination.

43
New cards

background (&)

A method for launching tasks without blocking the shell; appending an ampersand runs the command asynchronously.

44
New cards

fg / bg / jobs

Built-ins to move a suspended or backgrounded task into the foreground, continue it in the background, or list them.

45
New cards

fork

A system call that spawns a new child by cloning the state of the current process.

46
New cards

exec

Replaces the current process image with a specified program, no return unless there is a failure to load.

47
New cards

wait / waitpid

Parent waits for child to end; obtains exit status for further logic or resource cleanup.

48
New cards

#! (Shebang)

In the first line of a script, indicates which interpreter will run the subsequent lines, e.g., /bin/bash.

49
New cards

environment variable

Named data that influences process behavior. Examples include PATH, HOME, and LANG.

50
New cards

export

Marks a shell variable so child processes inherit it, as in export MYVAR="something".

51
New cards

echo

Prints text to standard output; often used in scripts to show progress or results.

52
New cards

read

Pauses a script to take user input from standard input and store it in a variable.

53
New cards

if / then / else

A conditional structure that checks an expression or command's success to decide which block of instructions to run.

54
New cards

for / while loops

Mechanisms for repeated execution, either over a list of items or until a given condition changes.

55
New cards

break / continue

Control statements that exit the nearest loop or skip to the next iteration, respectively.

56
New cards

redirection (>, >>, 2>&1)

Diverts standard or error output into files or merges them, e.g., sending all output to a single log.

57
New cards

shell script execution

Typically done by granting permission (chmod +x) and invoking with ./scriptname or via the shell.

58
New cards

Insert Mode

A state where typed characters become file content; triggered by pressing i or a.

59
New cards

Command Mode

The default editing state in vi: keystrokes are interpreted as editing actions (movement, deletion, search, etc.).

60
New cards

Esc (Escape)

Exits insertion, returning to command mode to accept further editing commands.

61
New cards

Save & Quit (:wq)

Writes all modifications to disk and closes the editor session, returning to the shell.

62
New cards

Quit Without Saving (:q!)

Leaves the editor and discards changes made since the last write.

63
New cards

dd

Removes the entire line under the cursor and places it in a buffer for potential paste.

64
New cards

x

Deletes the single character under the cursor in command mode.

65
New cards

yy / p

Copies the current line (yy) and places it in a buffer; the second command (p) pastes that buffer below.

66
New cards

/pattern and n

Looks for the next occurrence of "pattern," continuing the search with n each time it's pressed.

67
New cards

:s/find/replace/

Replaces the first match on the current line; adding a g at the end does it globally in that line.

68
New cards

:%s/find/replace/g

Substitutes all instances of "find" with "replace" throughout the entire document.

69
New cards

G, gg, ^f, ^b

Movements: jump to last line, jump to first line, scroll forward a page, and scroll back a page, respectively.

70
New cards

#include Directive

A line that includes headers or library declarations so the compiler knows about functions and classes used later.

71
New cards

using namespace std

Temporarily allows standard library objects (like cout) to be accessed without prefixing "std::".

72
New cards

main Function

The required entry point of any stand-alone C++ application; returns an integer as exit status.

73
New cards

g++ -c

Translates a .cpp file into an intermediate .o (object) file but does not create a runnable program.

74
New cards

g++ -o

Links object files (and libraries if needed) into a final executable with a specific name.

75
New cards

-Wall

Tells the compiler to issue all recommended diagnostic warnings about suspicious code.

76
New cards

Makefile

A text file defining build rules so that the "make" utility can compile and link only what has changed.

77
New cards

Typical Makefile Rule

A structure with "target: prerequisites" on one line, followed by TAB-indented commands that build the target.

78
New cards

clean Target

A special pseudo-rule often used to delete all object files and temporary build artifacts so you can rebuild from scratch.

79
New cards

Two-Stage Build

The practice of separating compilation (per file) and final linking into distinct steps, improving efficiency and maintainability.

80
New cards

tar

An archiver that packages multiple files into a single bundle; can optionally compress using "-z" with gzip.

81
New cards

rsync

Synchronizes directories between local or remote hosts, transferring only the deltas, which is very bandwidth-efficient.

82
New cards

scp

Copies files securely between machines over SSH, ensuring confidentiality of data in transit.

83
New cards

ssh

Opens an encrypted, authenticated remote session on another system, letting you run commands from afar.

84
New cards

df / du

The first shows the percentage of used and free space on mounted filesystems, while the second calculates a folder's total size.

85
New cards

script

Captures all terminal input and output in a named file, letting you produce logs or transcripts of session activity.

86
New cards

Rehearsing Hands-On

Encourages typing out each command multiple times until it becomes second nature.

87
New cards

Checking Man Pages

Advises referencing built-in documentation for deeper usage details, examples, and option lists.

88
New cards

Combining Tools

Recommends piping commands together for powerful one-liners (e.g., ls | grep something | sort).

89
New cards

Building Basic Shell Scripts

Suggests starting with simple scripts (like a for-loop that echoes filenames) to confirm you understand fundamentals.

90
New cards

Current Working Directory

The directory your shell is presently "inside." Use pwd to display it, cd

to change it.

91
New cards

Home Directory

The user's personal directory, typically /home/ or /people/cs// on campus systems. The shell moves here on login.

92
New cards

ls

Lists contents of the current (or specified) directory. Common flags: -l (long format), -a (include hidden files).

93
New cards

Pipe |

Connects the output of one command to the input of another, e.g. ls | grep txt finds lines containing "txt."

94
New cards

&& and || in Shell

Logical operators. cmd1 && cmd2 runs cmd2 only if cmd1 succeeds; cmd1 || cmd2 runs cmd2 only if cmd1 fails.

95
New cards

$?, $#, $1, $@

Shell special parameters. $? = exit status of last command; $# = number of arguments; $1 = first arg to script; $@ = all args.

96
New cards

sudo vs su

sudo executes a single command with elevated privileges, whereas su switches you into another user's shell, often root.

97
New cards

Substitute: :%s/old/new/g

Replaces all occurrences of "old" with "new" throughout the file. Omit the % to do it on the current line only.

98
New cards

Navigation: h, j, k, l, or arrow keys

Moves left, down, up, right. ^f or PageDown moves forward a screen, ^b or PageUp moves back a screen.

99
New cards

Setting line numbers: :set nu

Tells vi/vim to display a line count on the left. :set nonu turns them off.

100
New cards

u (Undo), U (Restore line), CTRL-R (Redo in vim)

Quick undo/redo features. u reverts the last change, CTRL-R redoes it in vim.