Linux Fundamentals (THM).3 Flashcards
executable that runs a basic text editor
nano
executable that runs an advanced text editor
vim
how do you download files via http using the CL?
wget ‘url’
What is SCP?
Secure Copy
What command allows you to copy file and directories and send them to a remote system and vice versa using the Shell?
SCP
(SSH+CP)
What is the format of SCP?
Source Destination
What are the values that you need for SCP/SSH (local to remote)?
IP Address/User on remote system/name of the file on local system/name that we wish to store file as
example of SCP/SSH (local to remote)
scp important.txt ubuntu@10.10.10.10:/home/ubuntu/transferred.txt
What do Ubuntu machines come pre-packaged with that turn you computer into an easily accessible web server?
HTTPServer (python3)
How do you access another computer’s HTTPServer?
curl and wget
How do you run the HTTPServer on your Ubuntu?
python3 -m http.server
What is PID?
Process ID
How do you interact with systemd?
systemctl
what are the 4 options of systemctl?
start
stop
enable
disable
What are 2 ways to background a process?
&
ctrl + z