system administration hw3 shell script changlp. computer center, cs, nctu 2 requirements user...

17
System Administration HW3 System Administration HW3 Shell Script Shell Script changlp

Upload: damian-bishop

Post on 02-Jan-2016

216 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

System Administration HW3System Administration HW3Shell ScriptShell Script

changlp

Page 2: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

2

RequirementsRequirements

User socket statistic (20%)• Use one-line command to show per-user socket statistic

ZFS snapshot management script (20%)• Script for ZFS snapshot management/rolling

RSS feed reader (60%)• A simple RSS feed reader using cdialog(1)

Page 3: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

3

User Socket Statistic – Requirements (1/2)User Socket Statistic – Requirements (1/2)

Use one-line command to show user socket statistic• $ sockstat

The output should be sorted by socket count in descending order

Socket count threshold• Use environment variable ‘THRESHOLD’

• Treat as 0 if ‘THRESHOLD’ is not set

Output format• User: count ( processes… )

Page 4: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

4

User Socket Statistic – Requirements (2/2)User Socket Statistic – Requirements (2/2)

Only pipes (cmd | cmd) and backquotes (`cmd`) are allowed No temporary files and variables (e.g. environment vars

except THRESHOLD) No “&&” “||” “>” “>>” “<“

Page 5: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

5

User Socket Statistic - ExampleUser Socket Statistic - Example

Page 6: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

6

ZFS Snapshot Management Script – ZFS Snapshot Management Script – Requirements (1/2)Requirements (1/2) Write a script to do ZFS snapshot and snapshot rolling

• cron(8)

Syntax• zfsSnap.sh -f <fs> -n <name> <-c <count> | -d>

• -f Target ZFS dataset

• -n Name of ZFS snapshot

• -c Number of ZFS snapshot copy to preserve

• -d Delete snapshots in <fs> with <name>

• Note that –c and –d are exclusive options

Page 7: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

7

ZFS Snapshot Management Script – ZFS Snapshot Management Script – Requirements (2/2)Requirements (2/2) Logging with syslog

• logger(1)

• Please log PID, script name into local7.notice

• Your script should output log when Old snapshots rotated New snapshots taken Snapshots deleted

Oct 27 15:32:08 Archon zfsSnap[2699]: Old snapshot: [email protected] rotatedOct 27 15:32:10 Archon zfsSnap[2709]: New snapshot: [email protected] 27 15:32:13 Archon zfsSnap[2727]: Deleted snapshots: zTmp@test.*

Page 8: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

8

ZFS Snapshot Management Script - ZFS Snapshot Management Script - ExampleExample Create snapshot (-c count)

Delete snapshot (-d)

Page 9: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

9

RSS Feed Reader – Requirements (1/2)RSS Feed Reader – Requirements (1/2)

Write a simple RSS reader with GUI• devel/cdialog

Support the following functions• Read (15%)

Read subscribed feed

• Add (15%) Add new subscription

• Delete (15%) Delete existing subscription

• Update (15%) Update subscription

Please store all files into ./feed/

Page 10: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

10

RSS Feed Reader – Requirements (2/2)RSS Feed Reader – Requirements (2/2)

Page 11: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

11

RSS Feed Reader – ReadRSS Feed Reader – Read

back

Page 12: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

12

RSS Feed Reader – AddRSS Feed Reader – Add

Use site title as default feed name

Page 13: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

13

RSS Feed Reader – DeleteRSS Feed Reader – Delete

You must remove related files / directories

Page 14: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

14

RSS Feed Reader – UpdateRSS Feed Reader – Update

Page 15: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

15

RSS Feed Reader – RSS ParserRSS Feed Reader – RSS Parser

For simplicity, TA would provide a simple RSS parser• https://raw.github.com/iamben/fetchFeeds/master/fetchFeeds.py

• https://github.com/iamben/fetchFeeds README

Write your own one• textproc/hs-feed

• textproc/p5-XML-FeedPP

• textproc/pear-XML_Feed_Parser

• textproc/py-feedparser

• textproc/ruby-rss

Page 16: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

16

Hand-inHand-in

Due• 2011/11/15 18:30

Demo & How• TBA

Page 17: System Administration HW3 Shell Script changlp. Computer Center, CS, NCTU 2 Requirements  User socket statistic (20%) Use one-line command to show per-user

Com

pu

ter C

en

ter, C

S, N

CTU

17

HelpHelp

IRC channel #nctuNASA on freenode Newsgroup cs.course.sysadmin BBS bs2.to board CS-SysAdmin Email [email protected] Goto CSCC to ask professional 3F!