The Kernel Is What Allows The Hardware T
The Kernel Is What Allows The Hardware T
🟩🟨🟥
🟩why are there so many linux distributions - because its easy and everyone who
wants to create one can
🟩whats shell - a program that takes the commands from the user and gives them to
the operating system
🟩can you copy several files/directories with cp - using wildcards (for example []
is used to represent any character within the brackets)
🟩can you copy several files/directories with mv - using wildcards (for example []
is used to represent any character within the brackets)
🟩how to check what shell i use now - ps -p $$
🟩how to know what shells i have - cat /etc/shells
🟩how do i switch between shells - just type the name of the shell you want to
switch to
🟩how to use find (how to find files in another directories) - find /DIRECTORY -name
FILENAME
🟩find /home -type d -name MyFolder
▶️◀️
🟩🟨🟥
🟩whats total in ls
the disk usage of listed files in blocks (1024 bytes) w/o subdirectories
🟩how to create a link file
ln -s {source-filename} {symbolic-filename} - by reference to filename
ln {source-filename} {symbolic-filename} - by pointer to data
🟩what types of files are there (d/- etc)
b - hardware files
s - socket files used to pass information between applications
l - link files used to link to Directory/Regular files.
🟩whats rom - read only memory, its where the bios is stored
🟩bios vs uefi
instead of being stored on the rom, the uefi is stored in an
.efi file in the EFI system partition (ESP) on the hard disk.
this provides more storage space for better user interfaces and mouse support
🟩how to add processes to start on startup
crontab -e
@reboot <executable file path>
🟩what system call does the kernel have?
process control
file manipulation
device Management
information maintenance
communications
or ``IPv6'' for an open IPv6 network file - even if its address is IPv4, mapped
in an
IPv6 address;
or the four type number octets if the corresponding name isn't known.
🟩print logs from the boot with journalctl
journalctl -D /var/log
not the full command but cant check if it works because i dont have logs
--file doesnt work