101.1 Determine and configure hardware settings Flashcards
What is a file system?
A file system is a method of laying off files and folders on a physical hard disk.
What creates a pseudo file system in the system?
A pseudo file system does not exist on a physical hard disk. It is created by the Linux Kernel.
When is a pseudo file system created?
It is created by the Linux Kernel after the computer boots.
Every process that runs on the system is associated with what?
Every process that runs on the system is associated with a PID (process ID)
What happens to a pseudo file system when the computer is rebooted?
It is wiped out while the computer is being turned off and then recreated once again when it boots up.
What type of information can be found in the pseudo file system called /sys?
/sys contains info about the hardware currently connected to the computer
In which pseudo file system can you find information related to the hardware and kernel info?
/sys
What can you see inside /proc ?
Within the /proc directory, you can see:
- all processes that are running on the system
- their specific directory
- their process ID.
What type of kernel is the Linux Kernel?
The Linux kernel is a monolithic kernel.
What is the purpose of the Linux Kernel?
It provides a way for the resources of the system (CPU, RAM, networking capabilities, etc) to operate with the hardware that’s connected to it.
What does “monolithic kernel” mean?
It means that the kernel handles all memory management and hardware devices interactions.
It also means that extra functionality can be added dynamically through kernel modules.
What does “loading kernel modules dynamically” mean?
It means the monolithic kernel can load kernel modules without rebooting the system.
In what form do kernel modules come a lot of the time?
They may come in the form of third party device drivers.
Which is the basic command we can use to gather info about the kernel we are currently running?
uname
What output does #uname -m give us?
uname -m gives the machine architecture, such as x86_64 (64bit kernel)