Week 1 Flashcards
What does SSH stand for?
Secure Shell Protocol
What is the purpose of SSH?
Securely handle commands sent to another computer through a unsecured network
How does SSH ensure security?
SSH uses public key cryptography to scramble and reveal information
What is a Shell?
a programs that receives commands and sends them to the OS to handle
In what order will Linux search for commands
first?
Linux will run shell functions before searching for build in scripts before looking at external commands in the PATH variable
What four things does the kernel do?
- Memory management
- Process management
- device drivers
- system call and security
How to remove a directory that contains files?
rm -r dirname
how to set git user name and email>?
git config –global user.name user-name
git config –global user.email user-email