Tryhackme - Linux Fundamentals Part 3 #1 :-Edit "task3" located in "tryhackme"'s home directory using Nano. What is the flag? Answer :-THM{TEXT_EDITORS} #2 :-Download the file http://MACHINE_IP:8000/.flag.txt onto the TryHackMe AttackBox What are the contents? Answer :- THM{WGET_WEBSERVER} #3 :-If we were to launch a process where the previous ID was "300", what would the ID of this new process be? Answer :-301 #4 :-If we wanted to cleanly kill a process, what signal would we send it? Answer :-SIGTERM #5 :-Locate the process that is running on the deployed instance (MACHINE_IP). What flag is given? Answer :-THM{PROCESSES} #6 :-What command would we use to stop the service "myservice"? Answer :-systemctl stop myservice #7 :-What command would we use to start the same service on the boot-up of the system? Answer :-systemctl enable myservice #8 :-What command would we use to bring a previously backgrounded process back to the foreground? Answ...