Technical Support Fundamentals: Week 3 Flashcards

1
Q

Remote Connection

A

Allows us to manage multiple machines from anywhere in the world.

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

SSH (Secure Shell)

A

A protocol implemented by other programs to securely access one computer from another. Requires a SSH client on the connecting computer and a SSH server on the computer being connected to. The server runs in the background constantly awaiting connection

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

SSH Authentication Key

A

More secure, comes with two keys.

Private - Can only unlock with private key
Public - Can only lock with public key

The two must be used in unison to authenticate

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

VPN

A

Virtual Private Network - another way to securely connect to another computer. Allows you to connect to a private network, like your work network, over the internet.

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

Operating System

A

The whole package that manages our computer’s resources and let us interact with it.

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

What does the File Handling in the Kernel Space handle?

A

Data, Metadata & File System

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

What are the 4 Kernel Space layers?

A

File Manger, Process Manager, Memory Mangement, I/O Management

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

NTFS

A

Windows major file system, includes encryption, faster access speeds, better security + more

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

APFS

A

Mac OS file system, fixed core issues with the previous iteration, optimized for SSD and supports encryption, snapshots, and increased data integrity

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

EXT4

A

The standard file system for Linux, but each build ranges from different file systems

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

Block Storage

A

Improves faster handling of data because the data isn’t stored as one long piece and can be accessed quicker.

We write data to our hard drive in the form of data blocks.

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

Metadata

A

Includes information about files including file owner, permissions, file size, date created + last modified and the file type. Tells us all the information that is collected.

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

File Extension

A

The appended part of a file name that tells us what type of file it is in certain operating systems

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

Process

A

A program that’s executing, like our internet browser or text editor

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

Program

A

An application that we can run, like Firefox

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

Time Slice

A

The period of time for which a process is allowed to run in a preemptive multitasking system is generally called the time slice or quantum

17
Q

Kernel

A

Creates processes, efficiently schedules them, and manages how processes are terminated

18
Q

Virtual Memory

A

The combination of hard-drive space and RAM that acts like memory that our processes can use

Virtual memory is a section of volatile memory created temporarily on the storage drive. It is created when a computer is running many processes at once and RAM is running low.

19
Q

I/O Devices

A

An input/output device is any hardware used by a human operator or other systems to communicate with a computer. As the name suggests, input/output devices are capable of sending data (output) to a computer and receiving data from a computer (input). Hard drives, touch screens, thumb drives, mouse, keyboard

20
Q

GUI

A

Graphical User Interface - A visual way to interact with a computer

21
Q

Shell

A

Text based commands - A program that interprets text commands and sends them to the OS to execute

22
Q

Logs

A

Files that record system events on our computer, just like a system diary.

23
Q

Boot Process

A
  • Power On
  • BIOS/UEFI: A low level software that initializes our computers hardware to make sure everything is good to run
  • BIOS runs POST test
  • Boot Devices get selected (Bootloader: A small program that loads the operating system)
  • Operating System
  • Kernel - Drivers as well so it can talk to software
  • Essential System processes + user space