Directions: 1. Do all of these inside a Linux terminal 2. Download this page into a file named "answers.txt" 3. Answer the listed questions by editing your "answers.txt" file 4. Create a file, "network.txt", that contains the output of the command "ip a" 5. Clone this repository: https://github.com/toledobrendo/iacsysadmin_2022_1 inside your home folder, if not already. 6. Create a folder "[lastname]" 7. Inside "[lastname]", copy “index.html” from your "~/iacsysadmin_2022_1" folder to a new file named “info.html”. 8. Modify the copied index.html to use your own name, email and birthdate 9. Create a file “pubkey.txt” that contains your public key. Generate if non-existent. 10. Inside finals.btagila.com/final-script, is a shell script that will generate a unique string per user. Make a copy of the script into your Linux machine. 11. Make the shell script work by reading and understanding its contents. Store the output of the script inside a file named “unique.txt” 12. Once done, place all relevant files inside a gzip-compressed archive named "[lastname]_finals.tar.gz" Note: This should be the content of your "[lastname]_finals.tar.gz": /[lastname]/info.html /[lastname]/answers.txt /[lastname]/network.txt /[lastname]/pubkey.txt /[lastname]/unique.txt Feel free to skip any file that you could not accomplish. 13. Send "[lastname]_finals.tar.gz" to the home folder of user "finals" (password: iacademy) located in server "finals.btagila.com" 14. Move the contents of the archive in such a way your files is accessible online thru: finals.btagila.com/[lastname]/info.html finals.btagila.com/[lastname]/answers.txt finals.btagila.com/[lastname]/network.txt finals.btagila.com/[lastname]/pubkey.txt finals.btagila.com/[lastname]/unique.txt 15. Notify the instructor once done One point per item. This practical exam will have a maximum of 25 points. Good luck. Questions: a. What command do you use to view all files inside a present working directory? Answer: ls. If you wanna include hidden files then ls -a. b. What distro and version said distro are you using? Answer: Ubuntu 24.04.3 LTS c. How much free space in storage does your Linux VM have? Answer: 19GB d. What command do you use to install applications over a remote repository in Debian-based OS? Answer: sudo apt install [app name] or sudo apt-get install e. What kernel version are you using right now? Answer: 6.8.0-87-generic f. What is the octal equivalent of the "-rw-r--r-x" permission? Answer: 645 g. What is the UID of the "root" user? Answer: 0 h. What command do I use to download a copy of a Git repository into my present working directory? Answer: git clone i. Append in this file a list of at least 3 system users your Linux VM currently has. Complete with their group ID, user ID, Full Name (if available), home folder and shell app location. (3 points) ex. lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin Answers: 1. daemon:x:1:1:daemon:/usr/sbin:/user/sbin/nologin 2. bin:x:2:2:bin:/bin:/usr/sbin/nologin 3. sys:x:3:3:sys:/dev:/usr/sbin/nologin