linux fundamentals 3 Flashcards

1
Q

wget

A

downloads files from web sites via http

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

SCP

A

secure copy
*allows transfer of files between systems using ssh protocol (authentication/encryption)

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

scp source to destination structure

A

scp local_file user@host:remote_file_path

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

scp destination to source

A

scp user@host:remote_file_path local_file

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

HTTPserver

A

module provided by python turning computer into lightweight webserver to serve own files
*serves files in directory where cmd is run (can be changed)
*no indexing

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

HTTPserver cmd

A

python3 -m http.server

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