uptime(1) User Commands uptime(1)NAME
uptime - show how long the system has been up
SYNOPSIS
uptime
DESCRIPTION
The uptime command prints the current time, the length of time the system has been up, and the average number of jobs in the run queue over
the last 1, 5 and 15 minutes. It is, essentially, the first line of a w(1) command.
EXAMPLES
Below is an example of the output uptime provides:
example% uptime
10:47am up 27 day(s), 50 mins, 1 user, load average: 0.18, 0.26, 0.20
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
|Availability |SUNWcsu |
+-----------------------------+-----------------------------+
SEE ALSO w(1), who(1), whodo(1M), attributes(5)NOTES
who -b gives the time the system was last booted.
SunOS 5.10 18 Mar 1994 uptime(1)
Check Out this Related Man Page
ruptime(1) User Commands ruptime(1)NAME
ruptime - show host status of local machines
SYNOPSIS
ruptime [-ar] [-l | -t | -u]
DESCRIPTION
The ruptime utility gives a status line like uptime (see uptime(1)) for each machine on the local network; these are formed from packets
broadcast by each host on the network approximately every three minutes.
Machines for which no status report has been received for 11 minutes are shown as being down.
Normally, the listing is sorted by host name, but this order can be changed by specifying one of the options listed below.
OPTIONS
The following options are supported:
-a Counts even those users who have been idle for an hour or more.
-r Reverses the sorting order.
-l | -t | -u These options are mutually exclusive. The use of one overrides the previous one(s).
-l Sorts the display by load average.
-t Sorts the display by up time.
-u Sorts the display by number of users.
FILES
/var/spool/rwho/whod.* data files
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWrcmdc |
+-----------------------------+-----------------------------+
SEE ALSO uptime(1), rwho(1), in.rwhod(1M), attributes(5)SunOS 5.10 6 Nov 2000 ruptime(1)
i'm trying to write a script that will check my os x box for uptime and autorestart gracefully if the uptime is greater than a certain number of days.
thus far i have this:
if uptime | cut -d ',' -f 1 | cut -d ' ' -f 4 -gt 10 ; then
echo "yes"
fi
this doesn't work and i've tried... (11 Replies)
Hello all,
I have search the forum and could not find an answer...Here is what I am trying to do. Every 15 minutes, a script send uptime output to a logfile (dailylog.log), that file contains lines like the one below:
11:21am up 44 days, 19:15, 1 user, load average: 0.00, 0.02, 0.03
... (7 Replies)
Hello to whoever is reading this!
I try to display my uptime on my desktop with a program called GeekTool.
For that purpose I use this command
uptime | awk '{print "Uptime : " $3 " " }'
So it looks like this
Uptime : 3:01,
My first question is how to remove the comma behind the... (7 Replies)
hello folks!
how can I display just the uptime without the current time, the word "up", and the load averages using the uptime command or some other command I do not know about? (13 Replies)
I was told that there is a correspondance between the number of cpus, the load averages, and when the cpus reach 100% capacity.
I have 4 cpus and said that once the numbers hit 4.00, my CPUs are 100% at capacity. load average: 0.08, 0.09, 0.11
Is that correct?
Thank you (7 Replies)
Hi,
I have a file that I want to average. So specifically I want to average every third column for each row.
Here is an example of my file
2 2 2 3 3 3 1 1 1 5 5 5
Heres what I want it to look like after averaging every third column
2 3 1 5
thanks (11 Replies)
Hi,
After run ps , uptime , w command I get reply "killed" as normal dba and staff group user.
As root every command works fine.
I cheched all the user settings , right with other servers and I could not find any error and other settings.
The oslevel is 5300-10-01-0921.
Any idea to... (12 Replies)
Hi,
I am getting a high load average, around 7, once an hour. It last for about 4 minutes and makes things fairly unusable for this time.
How do I find out what is using this. Looking at top the only thing running at the time is md5sum.
I have looked at the crontab and there is nothing... (10 Replies)
Hi All,
I have Solaris-9, Sun Fire V1280 with uptime of 501 Days. My Big brother monitoring showing me 90% + memory utilization on this box. Since this is production box, I can not reboot it. Is there way to know, what is consuming so much ? It is affecting my other environment on the box.... (16 Replies)
hi All,
I wrote a shell script for checking the status code of the pages. for 1300 URLs, it is taking 15 mins to run. Can anyone pls provide a solution to make the script to run faster. about 5 mins..
In my script i used "while loop" and "wget --server-response".
Thank You! (16 Replies)
Hi,
Am writing a script where I want to find uptime of certain servers. Is there any command where we can find uptime without login to the server, since the server list is big logging to the server will time consuming.
Thanks in advance (7 Replies)
Basically, I need to find average of numbers which are given like:
sh average file1 file (in files can be more than one number)
->10
sh average 5 7
->6
sh average /users/file
->5
echo 5 7 | sh average
6
So basically i wrote my code but it gives me error... I am pretty sure it has to work... (10 Replies)
Hello,
Result of scripts are emty. If statements are not working but why?
What is right line?
1-
#!/bin/ksh
up=`uptime |awk '{print$3}'`
hostname=`hostname`
if ] && ]; then
echo "$hostname | $up | Running over than one year."
fi
exit 0
2-
#!/bin/ksh
up=`uptime |awk... (12 Replies)