Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Looking for Advice from Experts Post 302269883 by mbubb on Friday 19th of December 2008 12:42:56 AM
Old 12-19-2008
Hello -

A pretty open ended question with lots of embedded issues. I am not an expert but have been working as a UNIX/ Linux Admin for about 3 yrs.

Pretty good place to start (IMHO) are some UNIX sys admin books. A few authors off the top of my head: Tom Limonicelli (sp?); Evi Nemeth, et al; Aeleen Frisch. I am sure I am forgetting some. These books (ie the O'Reilly Essential Unix System Administration by Frisch) are really useful as general, broad references. They lead to deeper topics and other books. The books I've read by Tom Limonicelli have been invaluable for learning how to become more professional and systematizing your day to day practice. I find myself going back to these authors over and over.

As for CompSci programs - it is always a good idea to go to school if you have time+money but I am not sure that it is completely necessary to become a sysadmin. I have take graduate cert courses at a local engineering school (Stevens Tech) and some were really valuable. I even took a course in Unix Systems Administration but I am not sure it is still offered...

One general theme of sysadmin books is the idea that the field is more akin to a guild than an academic discipline. As with a craft or a trade, your learning is typically an alternation of practice and study. And learning from master craftspeople. I have found my local LUG (NYLUG) pretty valuable and try to keep abreast of discussions on groups like SAGE and LOPSA.

You are already on this list which is a fine one. There are more to search out.

See yourself as a member of a guild, I really thing this is a "useful fiction" as System Administration is one of those fields that is hard to define.

Hope this helps abit with the first part of the question...

As for Linux/ Unix distribution choice. Just keep trying them. You will probably gravitate towards a particular way of package management/ software installation and that will be your distribution.

I happen to be on Ubuntu for work and it is fine. I like Debian so Ubuntu is a comfortable fit.

I worked on NetBSD for a while and found pkgsrc really interesting. Likewise for OpenBSD which I have on a laptop at home.

I havent met too many distributions that I didnt find worth checking out, though I don't tend to choose RedHat or SUSE.

best of luck

Michael
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

perl module installation problems... experts advice needed,...

---------- This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered patch, see perl -V for more detail) ----------in win 2000 advanced server,.. i am somewhat comfortable with perl but i am new to perl modules.. when i tried to install xml::simple and xml::parser there... (4 Replies)
Discussion started by: sekar sundaram
4 Replies

2. UNIX for Dummies Questions & Answers

Perl Experts - Need your help

Hi All, I am using ingres in perl select count(*) rec from user_tables where table_name = 'abc'; I want to use the alias variable 'rec' and check the value if >0 insert values else create table. How can I do this without using hash variables in perl. Kindly help me in this regard. Much... (1 Reply)
Discussion started by: karthickrn
1 Replies

3. UNIX for Dummies Questions & Answers

Perl Experts - Need your help

Hi All, I need to take a dump of a table and load into excel and send as an attachment and for this am using a Perl script. I know the usual way of doing this by writing all the fields next to 'select' query and similarly writing into an excel as shown below ... (3 Replies)
Discussion started by: karthickrn
3 Replies

4. Solaris

Experts !!! Please advise

Hi, I work on sun Solaris. Am hosting few web services on my server which are accessed over the internet. Now to check whether the web service is responding or not, i first have to log in to the web service URL. If it doesn't respond there, i come back to my server box and restart the service... (4 Replies)
Discussion started by: sting672744
4 Replies

5. UNIX for Advanced & Expert Users

for experts

Hi i'm working with mpi programs every thing ok but i need after i compile the mpi to calc the area of the rectangle for example (not my program) accept two arguments from the command line: mpirun -n 4 myprog 24 100 here 24 and 100 two arguments i'll pass them to the program how can... (1 Reply)
Discussion started by: Scotch
1 Replies

6. UNIX for Advanced & Expert Users

Experts!! please help me

Hi experts, Please help me on the below: how to write a shell script to search and delete files on windows server. -script runs on unix box -it should search for specific files on windows server and delete them periodically. (1 Reply)
Discussion started by: chpradeepch
1 Replies

7. IP Networking

Experts - Need suggestion

I'm searching to learn linux coding for a month but no clear about the where to start . Right now i'm in networking but not much interested in this maintenance jobs . I'm looking to create my own product in wireless network and also having idea about gadget that can be useful for students . But i... (1 Reply)
Discussion started by: Cholasivam
1 Replies

8. Shell Programming and Scripting

To all the awk experts out there!

Hello All, I recently encountered this difficulty in processing a File. Input File has millions of records with fields like below ID1,ID2,DATE,FLAG,VAL 123,432,0604,1,-0.5 123,432,0604,22,0.5 123,433,0604,1,-0.54 123,433,0604,22,6.77 123,543,0605,22,0.94 To put this simply, I will have... (8 Replies)
Discussion started by: PikK45
8 Replies
Aspect::Advice::After(3pm)				User Contributed Perl Documentation				Aspect::Advice::After(3pm)

NAME
Aspect::Advice::After - Execute code after a function is called SYNOPSIS
use Aspect; after { # Trace all returning calls to your module print STDERR "Called my function " . $_->sub_name . " "; # Suppress exceptions AND alter the results to foo() if ( $_->short_name eq 'foo' ) { if ( $_->exception ) { $_->return_value(1); } else { $_->return_value( $_->return_value + 1 ); } } } call qr/^ MyModule::w+ $/ DESCRIPTION
The "after" advice type is used to execute code after a function is called, regardless of whether or not the function returned normally or threw an exception. The "after" advice type should be used when you need to potentially make multiple different changes to the returned value or the thrown exception. If you only care about normally returned values you should use "returning" in the pointcut to exclude join points occuring due to exceptions. If you only care about handling exceptions you should use "throwing" in the pointcut to exclude join points occuring due to normal return. AUTHORS
Adam Kennedy <adamk@cpan.org> COPYRIGHT AND LICENSE
Copyright 2010 Adam Kennedy. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-02-01 Aspect::Advice::After(3pm)
All times are GMT -4. The time now is 10:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy