Linux Fundamentals Part
SSH
Secure shell - all traffic is encrypted with cryptography - Allows to remotely manage a given device - Sends encrypted data over network
Example:Flags and Switches
Flags/switches - arguments provided after most linux commands
Example:
Man Page
Source of information and documentation for linux commands or applications
Copying and Moving Files
To copy a file, use cp
and then the 1) name of existing file, and the 2) name of the new file
To move a file, use mv
and the same format
To determine what the file type is, use file
.
Permissions
Switching between users:
Common Directories/etc
Short for 'etcetera'. Stores system files used by OS.
/var
Variable data. Stores data frequently accessed or written by services or applications running on the system.
/root
Home directory for 'root' system user.
/tmp
Volatile, stores temporary data. Data is cleared/wiped on system restart.