Week 1 Flashcards

1
Q

What does SSH stand for?

A

Secure Shell Protocol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the purpose of SSH?

A

Securely handle commands sent to another computer through a unsecured network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How does SSH ensure security?

A

SSH uses public key cryptography to scramble and reveal information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a Shell?

A

a programs that receives commands and sends them to the OS to handle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What four things does the kernel do?

A
  1. Memory management
  2. Process management
  3. device drivers
  4. system call and security
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to remove a directory that contains files?

A

rmdir -r dirname

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly