Lesson 4 Flashcards
What makes enterprise distros of linux unique?
Much slower release cycles, older release of the linux kernel that are known to be stable.
What are some cons to enterprise linux distros?
They may lack support for the latest hardware
What are Redhat and Ubuntu’s support lifespane?
10 years
5 years
What are some BSD based OS’s
FreeBSD, NetBSD, OpenBSD
what is macOS based on?
BSD Unix with Bash shell
What command is used to find your kernel version?
uname -r
What do power supplies do?
They normalize power into standard voltage requirements. This allow hardware to be made that can be used anywhere in the world.
What does a motherboard do?
Normalizes the interconnection using standardized connectors and form factors to bring all the components of the computer together.
What type of software do motherboard sometimes have on board?
Firmware to deal with motherboard specific hardware
Give an example of a motherboard firmware
BIOS
What is the BIOS responsible for?
Configuration but also identifying, loading, and transferring control to the operating system
What standard did intel define motherboard standards?
EFI - extensible firmware interface
UEFI - Unified extensible firmware interface
What command can be used to see free memory?
free -m
What is the distinction between CPU and Processor?
A processor may hold more logic units than JUST the cpu, like a built in GPU for example
What command can you run to see information about your processor?
lscpu
What is the max size of memory that can be accessed on a 32 bit system?
4gb
What is HTT?
Hyper-Threading Technology Allows a single CPU to concurrently process multiple instructions thus virtually acting as multiple physical CPUs
What are modern connection standards for storage devices?
SATA or SCSI
What is partitioning?
Tells Linux if it should see the entire devices as one contiguous block of memory or if it is broken up into pieces
What would you expect the name of the device in /dev to be for the partition 3 of the third SATA drive?
sdc3
What does the lsblk -f command do?
Lists the drives and their partitions with the -f it also shows the file system format/type
Where are binary files stored?
/bin
/sbin
/usr/bin
/usr/local/bin
/usr/local/sbin
Where are configuration files stored?
/etc
What are some common files found in /etc
group
hostname
hosts
passwds
.conf files
profile
bash.bashrc
What are some common .config files in $HOME
.bashrc
.profile
.bash_history
Where is the kernel stored?
/boot
What is the PID that the kernel first runs after it’s loaded into memory?
1 or systemd
What is the /proc directory?
It’s a list of files and directories stored in memory, it’s not written to disk.
contains info about running processes, kernel config, system hardware
What is the /proc/sys directory?
Includes kernel configuration settings
What is the /dev directory?
Devices directory for all connected hardware devices
What is a block devices?
Devices where data is read or written
What is a character device?
Are those in which data is read and written in sequential order one character at a time (keyboards, text consoles, serial ports)
What is /dev/zero?
Provides as many null characters as requested from it
What is /dev/urandom?
Generates pseudo-random numbers