Operating Systems and Command Line Interfaces - Review

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/32

flashcard set

Earn XP

Description and Tags

Question-and-answer flashcards covering OS concepts, OS types, CLI vs GUI, Windows CMD, and Linux terminal commands based on the provided notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

33 Terms

1
New cards

What is an operating system (OS) and what are its primary roles?

An OS is system software that manages hardware and software resources, provides essential services for applications, and acts as a mediator between the user and the hardware to run programs and enable user interaction.

2
New cards

Name three core functions of an operating system listed in the notes.

Process scheduling; Memory management; Input/Output operations; File system control; Device communication; and ensuring multiple applications can run without interfering with each other.

3
New cards

What are the major families of operating systems with examples mentioned in the notes?

Windows (Microsoft Windows), macOS (Apple), Linux, Unix; Android is powered by Linux.

4
New cards

Which MacOS versions are mentioned and what is notable about Sonoma?

Catalina, Big Sur, Monterey are noted as older versions; Sonoma is mentioned as offering enhanced features.

5
New cards

What is a Command Line Interface (CLI) and what can it do for users?

A text-based interface that lets users perform tasks by entering commands; can scan for suspicious files, check network security, and perform tasks that GUI can also do; it can be faster and easily automated.

6
New cards

What is the Windows command line interface officially called, and what are its alternatives?

Official name: Command Prompt (CMD or cmd.exe). Alternative names seen in notes include CMD.

7
New cards

How do you open the Windows Command Prompt?

Open via Start menu by typing 'Command Prompt' or 'CMD', or press Windows + R to open Run and type CMD.

8
New cards

Name four main cybersecurity uses for CMD listed in the notes.

Automating security tasks; Troubleshooting security incidents; Configuring advanced security settings; Managing network security.

9
New cards

What does the Windows color command do and what does color 17 specify?

The color command changes CMD color; color 17 sets blue background (1) and white text (7).

10
New cards

What does the Dir command do in Windows CMD?

Lists files and folders in the current location.

11
New cards

What does the Cd command do in Windows CMD?

Changes the current directory.

12
New cards

What does the Type command do?

Displays the contents of a text file.

13
New cards

What does the Copy command do and why is it used in analysis?

Copies files; used to preserve the original data during analysis.

14
New cards

What does the Del command do?

Deletes a specified file.

15
New cards

What does the Mkdir command do?

Creates a new folder/directory.

16
New cards

What does the Whoami command show?

Shows the current logged-in user.

17
New cards

What does the Net User command do?

Lists user accounts on the system.

18
New cards

What does the Ipconfig command do?

Displays network settings.

19
New cards

What is the Ping command used for?

Tests if another system or site is reachable (network availability).

20
New cards

How can you access the Run box and open CMD on Windows?

Press Windows + R to open Run, then type CMD.

21
New cards

What is the Linux Terminal commonly referred to as?

The terminal, the Linux command line interface used for direct interaction with the OS.

22
New cards

List the main cybersecurity uses of the Linux terminal mentioned in the notes.

Automating security tasks; Monitoring and analyzing system logs; Configuring network and firewall settings; Troubleshooting security incidents.

23
New cards

Name the basic Linux commands introduced: PWD, LS, CD, Mkdir, RM, Man, Tab Completion.

PWD prints the working directory; LS lists files/directories; CD changes directory; Mkdir creates a directory; RM removes files; Man shows command manuals; Tab Completion autocompletes commands.

24
New cards

What does PWD stand for and what does it do?

Print Working Directory; shows the current directory.

25
New cards

What does LS do and how can you see more details about files?

LS lists files and directories; use ls -l to see file size and modification details.

26
New cards

What does CD [directory] do in Linux?

Changes the current working directory to the specified directory.

27
New cards

What does Mkdir [directory_name] do in Linux?

Creates a new directory.

28
New cards

What does RM [filename] do in Linux?

Deletes the specified file.

29
New cards

What does Man command do in Linux?

Displays the manual for a command.

30
New cards

What is Tab Completion in the Linux shell?

Hit Tab after partially typing to auto-complete the rest of the command or path.

31
New cards

What does Cat [filename] do in Linux?

Displays the contents of a file in the terminal.

32
New cards

What does Touch [filename] do in Linux?

Creates a new empty file.

33
New cards

What is the difference between CLI and GUI as described in the notes?

CLI involves interacting by typing commands; GUI uses buttons, graphics, and icons. CLI typically uses less memory and can be faster, while GUI uses more memory, presents graphics, and supports higher multitasking; CLI offers greater control, accuracy, and automation.