Linux Overview

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/50

flashcard set

Earn XP

Description and Tags

Practice flashcards covering Linux command structure, help systems, basic utilities, file permissions, and redirection based on the lecture notes.

Last updated 12:08 AM on 8/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

51 Terms

1
New cards

Linux Command

An executable program that interacts with the operating system, including the kernel and shell, to perform requested functions.

2
New cards

Command Options

Optional switches, usually preceded by "-" or "--", that indicate the mode of operation for a command.

3
New cards

Command Arguments

Optional data used or manipulated by a command, such as a filename.

4
New cards

manman

The manual pager used to find information about commands, organized into sections (11 to 99).

5
New cards

manman Section 1

Contains documentation for executable programs or shell commands.

6
New cards

manman Section 2

Contains documentation for system calls.

7
New cards

infoinfo

The GNU info system used to find command information using logical nodes; keys include "n" (next), "p" (previous), and "t" (top).

8
New cards

lsls

Command used to list directory contents.

9
New cards

pwdpwd

Command that prints the name of the current working directory.

10
New cards

mkdirmkdir

Command used to create a new directory.

11
New cards

cpcp

Command used to copy a file or directory.

12
New cards

mvmv

Command used to move or rename a file or directory.

13
New cards

rmrm

Command used to remove a file or directory.

14
New cards

rmdirrmdir

Command used to remove an empty directory.

15
New cards

filefile

Command used to determine the file type of a specific file.

16
New cards

touchtouch

Command used to change a file timestamp or create an empty file if it does not exist.

17
New cards

wcwc

Command that prints the number of lines, words, and characters in a file.

18
New cards

sortsort

Command used to sort lines of a file numerically or alphabetically.

19
New cards

psps

Command that prints a snapshot of current processes.

20
New cards

toptop

Command that displays a dynamic view of running processes.

21
New cards

netstatnetstat

Command used to print network statistics.

22
New cards

whoamiwhoami

Command that prints the effective userid to identify the current user.

23
New cards

whichwhich

Command used to locate a command's executable path.

24
New cards

grepgrep

Command that prints lines matching a pattern using regular expressions.

25
New cards

catcat

Command used to concatenate files and print them to standard output.

26
New cards

lessless

A file viewer similar to "more" but with additional features for paging through text.

27
New cards

headhead

Command used to print the first nn lines of a file.

28
New cards

tailtail

Command used to print the last nn lines of a file.

29
New cards

diffdiff

Command used to compare files line-by-line.

30
New cards

dfdf

Command used to print file system disk space usage.

31
New cards

dudu

Command used to estimate file space usage for a directory and its subdirectories.

32
New cards

stdinstdin

Standard input; the default file (keyboard) where a command reads its input from.

33
New cards

stdoutstdout

Standard output; the default file (terminal) where a command sends its output.

34
New cards

stderrstderr

Standard error; the default file (terminal) where a command sends its error messages.

35
New cards

File Descriptor

A unique, non-negative integer used to identify open files on a per-process basis.

36
New cards

Permission Group: User

Often called the owner; applies exclusively to the owner of the file.

37
New cards

Permission Group: Others

Often referred to as "world"; applies to all other users in the system who are not the owner or in the assigned group.

38
New cards

Read Permission (rr)

Indicates the capability to read the contents of a file; has a numeric value of 44.

39
New cards

Write Permission (ww)

Indicates the capability to write to a file or modify a directory; has a numeric value of 22.

40
New cards

Execute Permission (xx)

Indicates the capability to execute a file or view the contents of a directory; has a numeric value of 11.

41
New cards

Hard Link

A directory entry that associates a name with a file; every file must have at least one.

42
New cards

Symbolic Mode

A method of setting permissions using letters: "u" (user), "g" (group), "o" (others), and "a" (all).

43
New cards

Absolute Mode

A method of representing permissions using three-digit octal values, where the first digit is for owner, second for group, and third for others.

44
New cards

chmodchmod

Command used to change the access mode (permissions) of a file or directory.

45
New cards

chownchown

Command used to change the user owner of a file.

46
New cards

chgrpchgrp

Command used to change the group ownership of a file.

47
New cards

vimvim

An improved version of the original vi text editor available on Linux systems.

48
New cards

Input Redirection (<<)

Syntax used to detach the keyboard from standard input and attach a file instead.

49
New cards

Output Redirection (>>)

Syntax used to detach the display screen from standard output and attach an output file, overwriting existing content.

50
New cards

Appending Redirection (>>>>)

Syntax used to add output to the end of a file instead of overwriting it.

51
New cards

Pipe (|)

A method of interprocess communication (IPC) where the standard output of one command is used as the standard input for the next.