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