UNIX/Linux Basics

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

1/61

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.

62 Terms

1
New cards
Unix/Linux
An operating system (OS) used with shell to interact with the OS
2
New cards
Kernel
Main program of a Unix system that controls peripherals
3
New cards
Shell
Interface between the user and the kernel that interprets commands
4
New cards
Multi-User
Capability for many people to use one machine simultaneously
5
New cards
Process
A running program identified by a unique Process ID (PID)
6
New cards
Directory Structure
Hierarchical tree structure containing files and directories
7
New cards
/bin
Contains binary essentials for system operation
8
New cards
/home
Location of all home directories
9
New cards
/var
Contains frequently changing files like logs
10
New cards
/etc
Contains various system configuration files
11
New cards
/dev
Contains various devices as files, e.g., hard drives, CD-ROM drives
12
New cards
/sbin
Contains binaries for superuser use only
13
New cards
/tmp
Contains temporary files
14
New cards
Superuser
Special user acting as an administrator with unrestricted access
15
New cards
Case Sensitivity
Unix is case-sensitive, treating files with different cases as distinct
16
New cards
Online Manual
Extensive online manuals available for Unix
17
New cards
Relative Path
Position in the directory tree dependent on the current location
18
New cards
Absolute Path
Position in the directory tree defined uniquely regardless of current path
19
New cards
Redirect & Append
Using > to redirect output to a file and >> to append output to a file
20
New cards
Pipe
Using | to use output from one command as input for another
21
New cards
Permission
Files and directories have owners and permissions for different user groups
22
New cards
Process
A unit of a running program with unique Process ID (PID)
23
New cards
Foreground & Background Jobs
Jobs can run in foreground or background mode with specific commands
24
New cards
Vi Editor
A text editor available on most UNIX systems, working with a variety of terminals and providing a customized editing environment.
25
New cards
UNIX
An operating system on which Vi Editor is available and widely used.
26
New cards
Modes
Two modes in Vi Editor: COMMAND mode (default) and INSERT mode for entering data.
27
New cards
Command Mode
The default mode in Vi Editor where anything typed is interpreted as a command, and ESC is used to return to it.
28
New cards
Insert Mode
A mode in Vi Editor where anything typed is interpreted as data, and ESC is used to exit.
29
New cards
Window Positioning
Using commands like ^f, ^b, ^e, :n, G, and arrow keys to move the window and cursor within Vi Editor.
30
New cards
Write & Quit
To write to the file & quit the editor, use :wq; to undo the last command, use u or U.
31
New cards
Delete Functions
Commands like dd, x, i, a, o for deleting lines or characters and inserting data in Vi Editor.
32
New cards
Open Files
To open several files in Vi Editor, use the command vi file1 file2 ... to edit them simultaneously.
33
New cards
Search Patterns
Commands like /.../, ?...?, n, :s/.../.../ for searching, advancing, and replacing patterns in Vi Editor.
34
New cards
Move Text
Using commands like ma, d'a, p to mark, delete, and put text in the buffer in Vi Editor.
35
New cards
Copy Text
Using commands like ma, y'a, p to mark, yank, and put text in the buffer in Vi Editor.
36
New cards
Write to File
Commands like :w, :w filename, :w!, m,nw filename to write, overwrite, or write lines to a named file in Vi Editor.
37
New cards
Useful Functions
Commands like :e, :e file, :r filename, !cmd, :linenumber for re-editing, reading, executing, and navigating in Vi Editor.
38
New cards
More Commands
Commands like yl, yw, d^, d$, Dw for yanking characters/words and deleting text in Vi Editor.
39
New cards
Tailoring Environment
Using :set options, :set nu, :set all for tailoring the current session and viewing settings in Vi Editor.
40
New cards
C++ Basics
Fundamental concepts and syntax of the C++ programming language
41
New cards
Program Structure
The organization and layout of a C++ program, including functions, classes, and statements
42
New cards
Comment blocks
Sections of code used for documentation and ignored by the compiler
43
New cards
Preprocessor directives
Commands that provide instructions to the compiler before the actual compilation process
44
New cards
#include
Directive to load predefined code interfaces for functions, classes, and other entities
45
New cards
Header that loads the C++ input/output library from the default location
46
New cards
Header that loads the C-style standard library from the default location
47
New cards
Using statements
Statements that allow the use of entities from a specific namespace without specifying the namespace
48
New cards
Main function
The entry point of a C++ program where the execution begins
49
New cards
g++ Compiler
A C++ compiler that is part of the GNU Compiler Collection
50
New cards
Compilation
The process of translating .cpp files into .o object modules
51
New cards
Linking
The process of combining .o modules to create a single executable
52
New cards
Syntax & Behavior
The general rules and actions of using the g++ compiler
53
New cards
Options for g++ Compilation
Various flags and commands used during the compilation process with g++
54
New cards
Options for g++ Linking
Various flags and commands used during the linking process with g++
55
New cards
Sample g++ Commands
Examples of commands used with the g++ compiler for compilation and linking
56
New cards
Makefile
A GNU utility that automates the compilation and linking of program components
57
New cards
Makefile Lingo
Terms and concepts related to the structure and syntax of a Makefile
58
New cards
Layout
The structure and format of a simple makefile consisting of rules, targets, prerequisites, and commands
59
New cards
Prerequisites
Files needed to create the target in a makefile
60
New cards
clean Target
An important target in a makefile used to remove compilation products and clean up the directory
61
New cards
Final Product
The result of refining a makefile with variables, compile options, and comments
62
New cards
Makefiles in Professional Work
The use of makefiles in the industry for efficient code versioning and deployment on UNIX/Linux platforms