csc3412 Assignment 2 Semester 1, 2020 Due Date: 11:59pm 25 April 2020, AEST Instructions This assignment consists of 3 questions each of equal value. They consist of common tasks required of a system...

1 answer below »
please find attached file




csc3412 Assignment 2 Semester 1, 2020 Due Date: 11:59pm 25 April 2020, AEST Instructions This assignment consists of 3 questions each of equal value. They consist of common tasks required of a system administrator—tasks I have had to do at some time in the past. Some of the questions require that you complete them using the supplied virtual machine. If you are unable to use the supplied virtual machine, for whatever reason, you must contact the Examiner before submitting to organised an approved system you can use to complete the assignment. This must be done well before you submit. Clear Layout It is vitally important that your assignment is clearly laid out with questions and parts of questions clearly defined. It must be a straight forward matter for the examiner to determine that you have completed each exercise satisfactorily. We want quality not quantity. Poorly organised submissions will be rejected or receive a poor mark. A text file or PDF/A document typeset using vanilla LATEX are preferred over a document produced by a word-processor. If you must use Microsoft Word please export your document as PDF/A1 not PDF. Command Output When answering these questions you will have to run commands under Linux—whenever a command is run you will need to: a. explain in your own words the purpose of the command in the context of the assignment question. (Please do not just copy the “Description” section from the man page!) Also, you need to explain in your own words all terminology used—as if you were 1 PDF/A is an archival format of PDF that embeds all fonts used in the document within the PDF file. To ensure PDF/A format in Word check “ISO-19005-compliant (PDF/A)” under “Options” when saving a file as PDF. 2 explaining to an average user! (Please show you understand what you are doing!) b. show that the command worked—either from its output or the output from another command. For example prompt> dd if=/dev/zero of=Crypt.fs bs=1M count=32 32+0 records in 32+0 records out 33554432 bytes (34 MB) copied, 0.109063 s, 308 MB/s prompt> ls -l Crypt.fs -rw-r--r--1useruser335544322010-02-2510:18Crypt.fs c. To capture text output from programs you will have to redirect the output to a file or use the command script. If you are using the command script turn off the tty escape sequences that change the colour of console text—the escape sequences will appear in output file and make it impossible to read. Please consult the USQ Assessment Procedure for the complete USQ policy on assessment. Question 1 (marks 20) An important service provided by any system is the ability to run a process on a predetermined schedule without human intervention. The “automation” of tasks can reduce the workload of the system administrator significantly. Unfortunately Linux currently offers not one service but potentially three—cron, anacron, and systemdtimer units. systemdtimer units are a recently designed service that incorporates and expands on the older anacron and the venerable cron, and has by far the richer configuration options. Assignment tasks: • (11 marks) In about a page, compare and contrast the systemd service against cron and anacron. Discuss the advantages and disadvantages of the systemd service over the older services. Your discussion must include a discussion and comparison of the time increments and formats recognisable by each service. • (9 marks) Illustrate your discussion by writing cron, anacron, and systemdtimer files to run the command top -b -n 12both daily, weekly and monthly. Notes: 2 Make certain not to forget the option -n 1 as top will never terminate without it! http://policy.usq.edu.au/documents.php?id=14749PL 3 a. It says “compare” and “contrast”—so explain how they are the same and how they are different, there advantages and disadvantages. b. Your answers must be written in your own words. c. Any technical term used must be explained. d. Do not discuss the package systemd-cron. Create and test the systemd service and timer files yourself. e. Some sources of information: Cron: • The text book • man 1 cron, and the man pages listed in the SEE ALSO section Anacron: • man 1 anacron, and the man pages listed in the SEE ALSO section Systemd timer unit: • The text book. • https://wiki.archlinux.org/index.php/Systemd/ Timers • http://www.certdepot.net/rhel7-use-systemd-timers/ • man 7 systemd.timer, and the man pages listed in the SEE ALSO section f. List all resources used in answering the question. https://wiki.archlinux.org/index.php/Systemd/Timers https://wiki.archlinux.org/index.php/Systemd/Timers http://www.certdepot.net/rhel7-use-systemd-timers/ 4 Question 2 (marks 20) One of your users has purchased an 8.0TB OWC Mercury Elite Pro Quad external drive. The OWC drive contains 4x2.0TB Toshiba disks and has hardware RAID 0, 1, 5, or 1+0. The plan is to use it as a RAID 5 backup storage. The RAID array will be connected to the work machine using a USB 3.0 cable. Instead of using the normal backup levels the user would prefer to have a current snapshot of his home directory on the backup disk, while retaining differences between snapshots. So when a backup is performed the user would like the following to occur: a. The snapshot on the backup disk be updated to exactly reflect the current home directory. The backup disk will then contain a current mirror of the home directory. b. Before any of the files on the RAID array’s previous full-backup snapshot of the home directory are deleted or overwritten, the files are copied sideways (preserving the directory tree) into a backup directory on the RAID array. Effectively a reverse incremental backup, with the current snapshot the full-backup. c. The backup directory should be converted to a single time- stamped compressed file using TAR/GZIP. The file name should be of the form YYYYMMDDhhmm.tgz. This means there is little chance of files having the same name and the files can be easily sorted from oldest to newest using the file name. d. Only 30 days of TAR/GZIPed incremental backup files should be kept. The user expects to run the script at the end of each working day to perform the current day’s snapshot as the user only wants to power-up the RAID array while snapshots are performed. This will help protect the data on the array from power failures (unless one occurs during a snapshot/backup process). The user wants to run just one script which will be stored on the RAID array. The procedure at the end of the day will be: a. Power-up the RAID array. b. Mount the RAID array. c. Run the script stored on the array. d. Check for error messages. e. Un-mount and power down the array. Your task is to write the script to perform the backup scenario outlined above. The only tools you will be using are: 5 date : Used to create the TAR/GZIPed file name and check if files are older than 30 days. tar : Used to archive all the files that would have been deleted or changed when the current snapshot is made. rsync : Used to create the current snapshot and copy deleted or changed files sideways before the snapshot is created. For the assignment, the following tasks need to be done: a. (4 marks) Explain and demonstrate how date is to be used to create the file name. Any options used must be explained. Example runs must be presented to show that date works as expected for the task. b. (5 marks) Explain how from the list of archived backup file names those that are older than 30 days can be extracted. c. (6 marks) Explain and demonstrate how rsync is to be used to create the snapshot and backup. Any options used must be explained. Example runs must be presented to show that rsync works as expected for the task. d. (5 marks) Put all of the above together into a script, with appropriate comments and error checking. Notes: a. The snapshot scenario above reverses the normal backup timeline: the current backup is always level 0, and incremental backups are going back into the past. b. The requirements above are exactly what I needed when I purchased the OWC external drive. The tools I used for the script are exactly the ones listed above. c. The utility rsync can sync directories across a network or on the same machine. It has many options and subtle responses depending on how the directory path is completed. These will have to be experimented with from the command line before deciding which are appropriate for this problem. d. When placing commands in a script, you must always check to see if they have worked correctly. On the command-line you know if a command has failed, but in a script you must check— because it may be run as a systemdtimer job! All processes when they exit—exit with a status code. Check the process status code in the script — the shell special variable ? (yes, that is a question-mark) contains the return value of the last run process: mkdir Backup if [ $? -ne 0 ] 6 then echo "failed to create backup directory" exit 1 fi Remember an exit value of zero means success, anything else is failure. 7 Question 3 (marks 20) The web administrator of your organisation needs to login remotely to the machine that is running the organisation’s public web site. You tell her that the only way to login is via the Secure Shell—which she knows nothing about! Assuming she is logging in via a Linux box write a help document for her containing the following— a. (6 marks) A short introduction to SSH, explaining why it is the preferred way of logging into a remote machine—this explanation will need to discuss: • the security implications of connecting remotely and how the Secure-Shell overcomes these security concerns. • This leads to a discussion of symmetric and asymmetric key encryption and how the Secure-Shell uses the two forms of encryption. b. (7 marks) A discussion of the contents
Answered Same DayApr 17, 2021CSC3412

Answer To: csc3412 Assignment 2 Semester 1, 2020 Due Date: 11:59pm 25 April 2020, AEST Instructions This...

Sanjana answered on Jul 03 2021
144 Votes
1. QUESTION ANSWERS: -
Task-1: -
Linux System provides three task Schedulers, that is to say “Cron, Anacron & Systemd” as described below:
Cron: is a software utility, which schedules t
he job based on time. The scheduler is employed as a part of Linux frameworks to carry out running of script which is absolutely necessary. Scheduling Linux Framework allow system admin to execute Time bound Scheduling and also permit the framework administrator to plan these coordinated implementations. For example, reservation of undertakings on indicated time of the particular date. Therepetition of the job or task on the option days is likewise feasible by utilizing cron. Cron is difficult to utilize and it is with respect to System in multiple angles. Cron produces robotized, where it sends framework to administrator if there is an occurrence of fizzle occupation or undertaking. Utmost every employments are planned for "/etc/Crontab". In contrast to Cron.
Anacron : is a computer program, that executes regular command scheduling , which are usually done by cron and works when framework is active and working mode between time undertakings were planned. The assignment is not executed if framework is Off and Executes the assignment on following Date or Time of Execution when framework is active. It is utilized as a part of framework which doesn't work 24x7 and remain workable for brief length of time as it were. For the purpose of utilizing and executing the Anacron is less demanding than Systemd . It is not equivalent with Cron in light of the fact that undertakings will be planned on premise of days and a particular time is given to all. Anacron employments and time is likewise settled in which all the anacron tasks need to finish their execution. Default Time set for such task is Between 3 a.m. and 10 P.m. Every one of employments are planned for "/etc/anacrontab"...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here