Chapter 3+4 Flashcards
Purpose of /boot
Contains files necessary to start boot process of the system, such as boot loader configurations and kernel images
Purpose of /etc
Stores system.specific configuration files
Files that control behaviour of various system components and applications
Purpose of /home
Home directory for regular users
Stores user-specific data and configuration files
Purpose of /root
Home directory for administrative superuser
Contains configuration files and data specific to the root user
Purpose of /usr
Contains installed software, shared libraries, user commands, system administration commands, locally customized software
Purpose of /var
Stores system-specific variable data that should persist between boots, including dynamically changing files
ls -l
long listing format
ls -a
list all files
ls -R
list recursively
cd -
change to previous directory, where user was before current one
cd ..
change to parent directory
cd
change to home directory
mkdir
make a directory
mkdir -p Files/file
create any missing parent directories for requested destination
cp
copy one or multiple files to a target directory