Suggestions for Shell Scripting Project


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Suggestions for Shell Scripting Project
# 1  
Old 06-20-2012
Computer Suggestions for Shell Scripting Project

I'm taking a class right now and need ideas for a project. The scope is relatively vague: "Create a 'mash-up' program that combines system administration functions into a single application." I would say my skills working in bash are between average and slightly above average. I was originally thinking about doing some sort of backup script that worked over ftp but realized it might be to easy. I'm open to any and all suggestions. Smilie
# 2  
Old 06-20-2012
Hi,

You could try a captive .profile for the root user with say a dozen or so commonly used root functions. I have done this in the past for a system on a customer site although it was a long time ago now - circa 1992.

The functions should probably include;
  1. A Shell for the root user (hiden in my script)
  2. A backup a single user option.
  3. A restore a single user - force it to take a backup first.
  4. A shutdown option.
  5. A trap routine that stops Ctrl C, Z and any others
  6. A routine to check disks
  7. A function to check rocesses

The .profile I used also cleared the screen and formatted the with bold and inverse etc, it was written for a DG412 terminal.

I think I had a total of 18 menu choices.

Regards

dave
# 3  
Old 06-20-2012
I would add some of the more common day-to-day operations:

* Reset a user's password.
* Display all print queues which have something queued.
* Remove an item from a print queue.
* Display mail queue.
* Remove item from mail queue.
* Snapshot of current system performance.
* History of recent system performance.
* Show number of users on the system.
* Show who is on the system complete with IP address.
* Display disc free space compared with set warning limits.
* Read system logs (filtering anything normal). Including hardware logs. Including cron log.
* Read root mail. (I archive the mailbox at 12:00 each weekday to make this manageable and ensure that all cron jobs silent unless they fail). Never send the output from a cron job to /dev/null - one day you will want to read it.
* Emergency find of abnormal large file(s) in the event of a disc space crisis. (Can take hours to write because you need to be able to exclude anything normal). This script could save you because you can be quick by being prepared for the inevitable. It is inevitable that you will encounter a rogue program which will attempt to fill a filesystem.

For the day-to-day server checks I get each system to mail me (and other support staff) with a concise summary of all the services (UP/DOWN) backed with full detail in the event of an actual problem. The fundamental check that the hardware map is the same as yesterday is the most important
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

shell scripting project for school

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: i need to prompt the user for a) group of scores b) calculate the lowest and highest scores and... (1 Reply)
Discussion started by: bodhi 926
1 Replies

2. UNIX for Dummies Questions & Answers

shell scripting project for school

i need to prompt the user for a) group of scores b) calculate the lowest and highest scores and overall average c) print out to the screen d ask if user has any more data to process, if so repeat (loop) for a new set of scores if not exit. i have this much,and trust me i know... (1 Reply)
Discussion started by: bodhi 926
1 Replies
Login or Register to Ask a Question