Manage Devices Linux 1.11

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

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

What is the /proc directory in Linux?

A virtual filesystem that provides system and process information in text files.

2
New cards

How do you view processor info in Linux?

Use less /proc/cpuinfo to see details like cores, cache size, and clock speed.

3
New cards

What are interrupts in Linux?

Events that trigger the CPU to handle tasks; view them with cat /proc/interrupts.

4
New cards

Why are interrupts useful?

They let the CPU respond immediately to important tasks, improving performance.

5
New cards

What are Linux kernel modules?

Drivers in Linux; loaded software that allows hardware to function.

6
New cards

How do you view loaded kernel modules?

Run lsmod to list all currently loaded kernel modules.

7
New cards

How do you unload a kernel module?

Use modprobe -r modulename to remove a loaded kernel module.

8
New cards

What is hwinfo used for?

A command-line tool that combines hardware info from multiple sources into one detailed view.

9
New cards

How do you install hwinfo on Ubuntu?

Run sudo apt install hwinfo.

10
New cards

How do you view hwinfo output page by page?

Use hwinfo | more to scroll one page at a time.

11
New cards

How can you save hwinfo output to a file?

Run hwinfo > /home/username/Documents/hwinfo.txt to save it.

12
New cards

Why save hwinfo output to a file?

To send hardware info to tech support or for documentation.

13
New cards

What GUI method exists in Ubuntu to view hardware info?

Go to Settings > About for basic system info.

14
New cards

Why use less instead of cat with /proc files?

Because less handles large files more cleanly and scrolls page by page.

15
New cards

What kinds of hardware does hwinfo detect?

CPU, PCI devices, video cards, network cards, sound cards, and onboard components.

16
New cards

What is the purpose of the Settings menu in Ubuntu for hardware?

To configure general system features like Network, Displays, Bluetooth, and view basic system info.