![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| What's on Your Mind? Come inside and relax a while. Maybe play a few Video Arcade Games if you have free time. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Career Path/Change - Cert Help | CoopDeVille | What's on Your Mind? | 2 | 06-15-2007 05:41 PM |
| Want URGENT Advice:Career as UNIX Systme Administrator | saarth_desh | UNIX for Dummies Questions & Answers | 5 | 07-24-2006 10:45 AM |
| career as a unix admin and new graduate | stride6 | UNIX for Advanced & Expert Users | 5 | 07-20-2006 09:43 PM |
| moving forward with a unix related career | BG_JrAdmin | What's on Your Mind? | 1 | 03-04-2006 01:35 PM |
| A Unix career? | Gavan | UNIX for Dummies Questions & Answers | 3 | 02-20-2002 11:14 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Unix Career Path
Hi,
I've been in the IT field for a few years now, less than 10. I've done a little of everything from database administration, development, systems administration, and unix administration. Although, I wouldnt say I'm a senior level in any of those. Unix definitely stands out in my preferences of a career path so I decided to look from some kind of Junior Unix Systems Administration position. I found a position that isnt exactly sa authoritive, but has unix server monitoring tasks, and one of the biggest tasks they are looking for is a junior unix scripting person. They say in the future they are looking to take over the servers completely as its being handled by another team. Do you think this would be a good opportunity to learn more unix internals as a scripter? |
| Forum Sponsor | ||
|
|
|
|||
|
Yes, but ideally not on the post mortem slab! This is an area where you need to be ahead of the game and able to foresee problems. You don't want to be reading tons of man pages at 2am in the morning trying to work out why your company's data disappeared.
|
|
|||
|
Quote:
|
|
|||
|
Well, its just test development scripting I would be doing now. They mentioned they understand this would be a junior role, but nonetheless in the beginning it would be alot of modifying Unix scripts for improvement etc......
|
|
||||
|
unix scripting will get you more familiar with unix and make you more efficient ... if you desire to get into senior positions later, i definitely advise you to take up and get proficient in scripting ...
as an example ... suppose i want to copy one file to 10 servers ... for a non-scripter, the process would be: Code:
scp file server1:/dir/file scp file server2:/dir/file scp file server3:/dir/file scp file server4:/dir/file scp file server5:/dir/file scp file server6:/dir/file scp file server7:/dir/file scp file server8:/dir/file scp file server9:/dir/file scp file server10:/dir/file for a scripter, the process would be (in kludgy ksh code and assuming proper ssh setup) ... Code:
x=1; while [ $x -le 10 ]
do
scp file server${x}:/dir/file
ssh server${x} "hostname; ls -l /dir/file"
x=`expr $x + 1`
done
so a non-typist scripter can take less time to do 1 task than a typist scripter that has to do 1 task 10 times ... big difference, right? Last edited by Just Ice; 10-26-2007 at 06:48 AM. Reason: fixed kludgy code |
||||
| Google UNIX.COM |
| Thread Tools | |
| Display Modes | |
|
|