There are questions in this document in addition to the script output so be sure to answer them in full when submitting this Question's Answer. Before starting this Question, please add a new hard drive to your virtual machine using the guide on Moodle. Task 1: Create Partition \& Filesystem 1. Use the fdisk command to output all current disks available 2. Use the information gathered to create a new partition with the information below on the disk that you created (Will be sdb if you only have two disks total after creation) a. Partition type: Primary b. Partition number: 1 c. First sector: Default d. Last sector: Default 3. Exit fdisk by writing out the changes made 4. Use the mkfs command to create an NTFS filesystem on the new partition you just created What is the name of the disk you created? What is the name of the partition you created? Task 2: Mounting Partitions 1. Make a new directory in your home folder named "Mounted Folder" 2. Use the mount command to mount the new partition to the new folder you just created 3. Use the df command to ensure that the mount was successful 4. Use the umount command to unmount your disk 5. Use the df command to ensure that the unmount was successful 6. Remove the "Mounted Folder" folder Where would the partition have been mounted if you didn't specify a destination path to the mount command? 1. Create the following empty directories in the root of your home directory (∼) in one command a. "Directory1" b. "Directory2" c. "Directory3" 2. Create the following empty files in the directories you just created as per below in one commanc a. Directory1/File1 b. Directory2/File2 c. Directory3/File4 3. Remove all directories from \#1 (Directory1, Directory2, and Directory3) in one command Task 4: Creating Links 1. Create a new file named MyLinkedFile 2. Create a hard link named HardLink that points to MyLinkedFile 3. Use Is -i to show that a hard link was created successfully 4. Create a symbolic link named SymbolicLink that points to MyLinkedFile 5. Use Is -I to show that a symbolic link was created successfully 6. Using the find command, show all files that have the inode number assigned to MyLinkedFile (Start at root) What is the inode number for MyLinkedFile? What is the inode number for HardLink? What is the inode number for SymbolicLink? Why are they not all the same? Task 5: Setting File Permissions 1. Create a new file named "Security Test" in your home folder 2. Using Is, fill out the following information (Use full words for permissions for example read, write, and execute): 3. Using the chmod command, add the execute permission for "other" on the "Security Test" file from above (Do not use decimal binary for this part) 4. Use Is again to show that the new permission was added 5. Using the chmod command, set the permissions on the "Security Test" file as follows (Use decimal binary for this part): 6. Set the owner of the "Security Test" file to root Bonus Question: Setting the Sticky Bit on a Directory 1. Set the SUID bit on the "Security Test" file from the previous task 2. Set the GUID bit on the "Security Test" file from the previous task 3. Set the sticky bit on the "Security Test" file from the previous task 4. Use Is to show that all of these bits have been set