Listing Live System Status

 
Thread Tools Search this Thread
Homework and Emergencies Homework & Coursework Questions Listing Live System Status
# 8  
Old 10-31-2012
If none of this was explained by your teacher, lecturer, or whoever, then it is right to assume it has been given to you as an exercise in research.

Research doesn't generally entail telling everyone what you need and expecting to get the answer.

Have you Googled any of the stuff you're looking for?
# 9  
Old 10-31-2012
Of course I have searched through Google looking for my answers. I was using these forums as a last effort to finish the assignment.
# 10  
Old 10-31-2012
I don't know that there are single commands ("a command") to do exactly what you need.

So it might be that you need to find the command that gets generally what you're looking for, and then use other commands, like awk, sed, cut and grep, etc. to extract the exact information you need.

Which version of what Linux are you using, and what shell?
# 11  
Old 10-31-2012
Could you give me any hints as to what sort of commands I could look into for more information?
# 12  
Old 10-31-2012
As much of what you are looking for is network-related, perhaps that would be a good place to start?

Let me google that for you

Additionally, I am sure you must have used the ps command? With the right options, that can also show the date when a process starteed. Here's a link to the man page: ps(1).

There's PERL, which is a "practical extraction and reporting language". It can be a bit overwhelming for newbies, so if you need to "extract" anything from ps or any of the network commands, I would suggest using awk!
# 13  
Old 10-31-2012
1 : Finding the first process: once youve mastered a bit ps command it should not be too difficult to find the requested... it must be PID 0 or 1 or...
You are to look at the man pages for ps syntax differ between OS (e.g ps ax v.s. ps -ef...)
# 14  
Old 10-31-2012
Here is a tip: you can find a man page by entering

Code:
man <command>

but this assumes that you know which command you look for. You can also search the man database for keywords by using the "-k" switch.

Code:
man -k foo

will display a list of all articles involving "foo". You can then start to read these articles one by one. Also useful: at the end of each man page there is usually a paragraph labeled "SEE ALSO". I suggest you do exactly this.

For instance:

Quote:
5. And a command showing the IP/MAC mappings of each of the LAN connected computers
You sure know the network protocol which maps layer-2 (MAC) addresses to layer-3 (IP) addresses, don't you? Now, enter this as a keyword in a "man" search and you might find some useful references.

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. What is on Your Mind?

Status of Badging System - Beta 1

Dear All, Here is the current status of the badging system: The Beta 1 phase of the new badging system is close to completion. 42 prototype badges have been "allocated" 6 prototype badge slots are held in reserve The "alert you have new badges" prototype is running and is currently... (4 Replies)
Discussion started by: Neo
4 Replies

2. Shell Programming and Scripting

file system status mail notifications

HI I want to get an e-mail @ my yahoo address when the file system used space gets more than 89% , & the message contents must be the outputs of df -g errpt netstat -i ??????? (3 Replies)
Discussion started by: majd_ece
3 Replies

3. Solaris

svc:/system/filesystem/local is always in maintenance status

Hello Friends, I need to change network filesystem status as online but it always seems in maintenance mode, I appreciate your any suggestion to change its state as online. shell>svcadm enable svc:/system/filesystem/local shell>svcs -l svc:/system/filesystem/local fmri ... (4 Replies)
Discussion started by: EAGL€
4 Replies

4. Shell Programming and Scripting

Hide status value from awk system command

Hi, When i use the system( ) function inside a awk, i am getting the ouput with a 0 appended in a new line. Can someone guide me to eliminate the extra line containing 0. Ex : awk -F"|" '{print system("convert.sh" $1}' The output is displayed with 0 in a new line. ... (8 Replies)
Discussion started by: muruganksk
8 Replies

5. Infrastructure Monitoring

SNMP OID for System Status LED's

I am trying to locate the proper MIB and OID location, to determine if the system attention light is on IBM-702x servers running 5.x. Currently, we get this on our Blade Centers Management Modules at location: 1.3.6.1.4.1.2.3.51.2.2.8.2.1.1.7.xx were xx is the actual Blade number. A value of 1... (0 Replies)
Discussion started by: stamfdf
0 Replies

6. Shell Programming and Scripting

System status query script

Hi, I am trying to access and read certain lines from a configuration XML file on multiple servers (within the LAN). Fortunately the file name and path is always the same for all servers. An example extract of the file is as follows: <DUMMY-SMSC>false</DUMMY-SMSC> ... (2 Replies)
Discussion started by: jaz8212
2 Replies

7. AIX

listing the whole system by filesize

Hi, Just wondered what command you would use to list all the files on Aix by filesize? I've tried a few but none of which seem to do the trick! Currently running du -m -a . | sort -rn | more as root Thanks, Matt. (1 Reply)
Discussion started by: elmesy
1 Replies

8. Shell Programming and Scripting

system status report script

hi i m new to this forum as well as UNIX. I've got an assignment but i don't know how can I start it. can anyone please help to tell me how can I start it? I added here few lines from my assignment. In industry, it is common for a single organisation to provide technical support for a... (0 Replies)
Discussion started by: moco
0 Replies

9. UNIX for Dummies Questions & Answers

Listing all links in a file system

How would one find and list all links in a file system? My situation is that I built several servers for disaster recovery, mirror images of several servers in our main location. Instead of doing a "ls -l" on every file system down the /usr structor to verify that I have all the necessary links... (3 Replies)
Discussion started by: ruger14
3 Replies
Login or Register to Ask a Question