4. Managing an OS Flashcards

3.1 Manage applications and software. Disk management • Process management/scheduling (Kill process/end task) • Memory management • Access control/protection 3.2 Compare and contrast components of an operating system. Services • Processes • Utilities (Task scheduling) • Interfaces (Console/command line, GUI)

1
Q

What are management interfaces used for?

They can be a graphical or command-line tool

A

System configuration

i.e. Control panel, management consoles, Registry Editor (regedit), Command Prompt/PowerShell

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

How to access sysadmin tools in Windows 10?

sysadmin = System administration

A
  • Right-clicking Start button
  • Pressing Windows+X
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a process?

A

Main unit controlling a program and managing its memory from the OS

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

What are threads?

A

Parts of a program scheduled for execution by the CPU

A process may contain one or more threads

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

What does the Task Manager allow you to do?

A
  • Shut down processes
  • Monitor PC resources
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

4 ways to run Task Manager in Windows?

A
  • Right-click taskbar
  • Right-click Start button
  • Click Windows+X
  • Click CTRL+SHIFT+ESC
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does it mean to “kill” a process?

A

Terminating a process via task manager

Always try to close or end a task normally before “killing” it

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

How to kill a process on the command line?

A

taskkill

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

What is are Windows services?

A

Background process that run without user interation or visible window

Windows Services handle key functions like sign-in, network browsing, and file indexing for faster searches. They’re installed by both Windows and third-party apps like antivirus, databases, or backup tools.

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

What does Task Scheduler do in Windows?

A

Sets tasks to run at a particular time

Tasks in Task Scheduler can run once in the future or on a recurring schedule. They can execute simple applications or batch files. Access Task Scheduler via its console or through Computer Management.

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

What is the Windows’ Task Scheduler equivalent for Linux?

A

cron

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

What is a memory leak?

A

When a process keeps claiming memory addresses without releasing them

Badly written programs & malware can cause memory leaks

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

What is virtual memory aka?

A

Pagefile

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

What is virtual memory (pagefile)

A

Portion of storage used as an extension of RAM when the physical RAM is full

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

Downside to virtual RAM?

A

Hard drives are slower than RAM

But using an SSD will greatly improve performance

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

What is Windows’ Disk Management used for?

A

Formatting storage devices & managing partitions

17
Q

What does partitioning mean?

A

Logically dividing a disk into separate areas, each accessible by the OS as its own drive

18
Q

What should you do before using Disk Management?

A

Back up data

19
Q

What does reformatting or partitioning a disk do?

A

Delets data stored on it

20
Q

What does the term “console” refer to?

A

command line or command prompt

But they have different technical meanings in Windows & UNIX/Linux

21
Q

What does access control mean?

A

System/data can only be used by an authorized person

22
Q

What account is created/used when an OS is first installed?

A

Local administrator account

23
Q

When should the local administrator account be used?

A

To manage the computer

i.e. install apps/devices, troubleshooting, etc.

24
Q

How do Standard user accounts differ from the admin account?

A

Unable to alter system settings and can only save files within their user/public profile

i.e. a user named David could only save files within C:\Users\David or C:\Users\Public. Administrators can access any folder on the computer.

25
Q

How do you create a loacal account instead of a microsoft account?

A

Clicking I don’t have this person’s sign-in information

26
Q

1 CLI that is not case sensitive?

A

Windows PowerShell

In Linux, the command environment is case-sensitive