![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| System Administration Certification | pharos467 | SUN Solaris | 2 | 01-22-2008 06:48 AM |
| Basic Aix Administration Questions... | NycUnxer | UNIX for Dummies Questions & Answers | 2 | 10-11-2007 09:51 AM |
| HP0-002 system administration certification | vikas_sri | HP-UX | 1 | 09-23-2003 09:56 AM |
| Hp-UX system administration exam ( HP0-002). | vikas_sri | HP-UX | 3 | 09-21-2003 05:39 PM |
| System Administration | UNIX for Dummies Questions & Answers | 13 | 07-28-2002 08:58 AM | |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Come and create a new thread to post a basic system administration command to share with all ..
#df -h -- to list down mounted filesystem with the capacity #uname -a -- to provide brief system information |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
tar command
#tar -cvf /[destination].tar /[source]/*
-- will tar the selection folders recursively with the (*) to the destination location #tar -xvf XXXXX.tar -- will extract the tar'red file |
|
#3
|
|||
|
|||
|
For Linux, AIX, *BSD, Tru64, HPUX
Code:
shutdown -h now Code:
shutdown -y -i 5 -g 1 Code:
shutdown -y -i0 -g1 -p |
|
#4
|
||||
|
||||
|
Personally I prefer:
Code:
halt Code:
kill -8 1 |
|
#5
|
|||
|
|||
|
Code:
cd /source;find . -print |cpio -pudvm /destination cool trick is that it will keep correct ownership/attributes and modification time for all files. |
|
#6
|
|||
|
|||
|
processes
#prstat -U oracle
-- This command will list down all process handled by "oracle" user . something like #ps -ef | grep oracle |
|
#7
|
|||
|
|||
|
getting CPU utilization in order
ps -eo ppid,pcpu,args | sort +1n |
|||
| Google The UNIX and Linux Forums |