Week 3 - Device Software Management Flashcards

1
Q

What are 2 ways to get to the device manager? W

A
  1. Run > dvmgmt.msc
  2. Right Click This PC > Manage > Device Manager
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the plug n play system? What’s the first thing Windows does?

A

The plug n play system allows us to plug in hardware and have Windows automatically search for the driver for the device so you can use it

It immediately asks the new hardware for its Hardware ID

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

What is a hardware ID? Assigned by who?

A

A special string of characters assigned to the hardware by the manufacturer/vendor

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

How does Windows find the right driver for a device? 3

A
  1. Searches local lists for well-known drivers
  2. Searches Windows Update
  3. The driver’s store
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Can hardware devices have more than one hardware ID assigned to it?

A

Yes, they’re sorted from most to least suitable for the device (to find the driver)

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

In Linux, when a device is connected where is the device file created?

A

/dev

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

What are character devices? Linux

A

Character devices transmit data character by character (like a mouse, keyboard, monitor, printer)

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

In Linux, everything is considered a ___ even ___ ___ !

A

In Linux, everything is considered a file, even hardware devices

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

What are block devices?

A

Block devices transmit data in blocks [unit of storage] (USB drives, hard drives, CD ROM)

(devices that can hold data)

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

When you see /dev/sda what kind of device is this referring to?

A

mass storage devices like hard drives, memory sticks, etc

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

Are device drivers stored in the /dev directory?

A

No, sometimes they’re part of the Linux kernel

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

What does the Linux kernel do? Where is it located, what does it boss around? What type of package is it?

A

The kernel is software located in the memory that tells the central processing unit (CPU) what to do.
The Linux kernel is like a personal assistant for the hardware that relays messages and requests from users to the hardware.

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

What is a kernel module? What can it do? L

A

A kernel module allows us to extend the functionality of the kernel without actually touching it
It can be installed the same way as software and act as a device driver for a specific device (for devices that don’t have built-in support in the kernel)

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

Are all kernel modules drivers? L

A

No

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

In Linux, devices attached to the computer are recognized as?

A

Device files

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

What is a Pipe device on Linux?

A

Similar to character devices, but instead of output going to a monitor for example it goes to a process running on the Linux machine

17
Q

What are socket devices? Linux

A

Socket devices help multiple processes communicate with each other (similar to pipe devices)

18
Q

What is Udev? Linux. What type is it?

A

Udev is a device manager that automatically creates/removes a device file every time the device is connected/disconnected

19
Q

What are postscript printer description (PPD) files?

A

PPD files can be used as printer drivers

20
Q

What does Red Hat Linux use to manage printers from the command line?

A

CUPS

21
Q

What does CUPS stand for? What does it do?

A

Common Unix Printing System

manages printers from the command line in Red Hat Linux

22
Q

What kind of update is a Critical Update?

A

Non-security related critical bugs

23
Q

What are drivers? What type are they?

A

Software that controls the I/O of devices running on our computers

24
Q

What are the 4 security levels for Security Updates? W

A
  1. Critical
  2. Important
  3. Moderate
  4. Low
25
Q

What are definition updates for windows update?

A

they update the definition databases that detect malicious code, junk mail, phishing websites

26
Q

What are feature packs? W updates

A

Add new product functionality to system

27
Q

What are service packs? W updates

A

Groups hotfixes, security, critical, and general updates together

A service pack also may contain new fixes or design changes requested by customers.

28
Q

What do general windows updates target?

A

specific non critical issues

29
Q

What do update rollups group together? W

A

hotfixes and updates that target a specific area, such as a component or service

30
Q

For older versions of Windows, are updates turned on automatically?

A

No they must be configured to update automatically

31
Q

In Linux, what’s the OS? Compared to Windows = Windows 10

A

Linux OS is comprised of the kernel and other packages, so the kernel is what you need to update for security updates

32
Q

How is the kernel in Linux similar to a word processor?

A

Just like any other package

33
Q

How to update kernel and other packges? What to run first? L

A

first run sudo apt update

then run sudo apt full-upgrade

34
Q

How to check what kernel version you have? L

A

uname -r

35
Q

What are the 4 main jobs of the Linux kernel?

A
  1. Memory management (memory used by what, where)
  2. Process management (CPU process management)
  3. Device drivers (interpreter for hardware)
  4. System calls and security (request for service)
36
Q

What is the Linux distribution (Operating System) comprised of? 2

A
  1. Linux kernel
  2. Package management system
37
Q

What are 2 ways to update the Ubuntu distribution?

A
  1. Update Manager GUI - checks automatically
  2. apt - check for updates manually

sudo apt-get update
sudo apt-get upgrade