Module 1 - Unit 4 - Management Interfaces Flashcards

1
Q

What is the registry and how does it distinguishes Windows and Linux?

A

The registry is a database of configuration settings supporting the Windows Os. Linux uses individual text files to store settings.

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

What term is used to describe terminating a process that is not responding to user input?

A

This is often called killing the process

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

Why might you use the Services snap-in to manage background processes rather than Task Manager?

A

Task Manager allows you to start and stop services but the Services snap-in also allows you to configure service properties

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

The Task Scheduler allows you to run a process automatically in Windows. what is a widely used Linux Equivalent

A

cron is widely used to run tasks automatically in Linux

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

What part of the system memory setup is most user-configurable?

A

Use of virtual memory or a pagefile, where disk space is used to supplement system RAM

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

What two things are configured on a disk to make storage space on the disk available to the Windows OS?

A

The disk must contain at least one partition, typically allocated a drive letter, and the partition must be formatted with a suitable file system

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

What is a CLI?

A

A Command Line interface allows the user to interact with the OS using typed command or scripts rather than a GUI

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

What protection feature in Windows is designed to prevent a script or software from making unauthorized changes to the OS configuration?

A

User Access Control (UAC). UAC means that the user must input their credentials or click through an authorization prompt before the configuration change can be made

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

True or false? A standard user cannot change their own password

A

False–ordinary users can change their own password but cannot change anyone else’s

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

Management interface

A

A graphical or command-line tool used to perform some aspect of system configuration

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

Windows’ management interfaces

A

Control Panel / Windows Settings

Management Consoles

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

Windows Computer Management

A

Contains a number of different administrative snap-ins. Each snap-in configures the settings for a different OS sub-system, such as disk management or user management

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

Windows Registry Editor

A

Known as regedit. When you change a setting via a management interface, you are usually changing something stored in the Windows Registry configuration database. The Registry Editor is a means of directly editing this database

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

How to configure Linux ‘registry’

A

All configuration is performed by modifying text files

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

What is a computer process?

A

A process is the main unit governing a program and managing the memory resources allocated to it by the OS. A process may contain one or more threads, which are parts of the program scheduled for execution by the CPU

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

What is a Windows’ service?

A

A service is a Windows process that does not require any sort of user interaction and thus runs in the background. Services provide functionality for many parts of the Windows OS, such as allowing sign in, browsing the network, or indexing file details to optimize searches.

17
Q

Task Scheduler

A

Set tasks to run at a particular time. Tasks can be run once at a future date or time or according to a recurring schedule. A task can be a simple application process or a batch file or script

18
Q

Virtual Memory

A

Virtual Memory or Pagefile is created by the OS using disk space to supplement RAM by paging it to the disk. This occurs when the OS loads more data than it can fit on the existing system memory modules installed

19
Q

Disk Management

A

A tool to format mass storage devices and manage partitions

20
Q

What are disk partitions?

A

Partitions allow a single disk to be divided into multiple different logical areas, each of which can be accessed via the OS as a separate drive

21
Q

Access control

A

Allow a computing device to have levels of authentication for different users. Some users can have extended authorization for areas of the computer than others, this is known as privileges and restrictions

22
Q

Least Privilege

A

A principle that states users should only have sufficient permissions required to perform tasks and no more

23
Q

User Account Control (UAC)

A

Windows’ solution to elevated privileges. Earlier versions of Windows allow user to have super privilege, while having the convenience, it also made the system susceptible to malware and viruses. UAC runs in a protected sandbox, where users will be prompted when the application requires administrative access