We have uptime but is there a starttime?


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users We have uptime but is there a starttime?
# 1  
Old 07-13-2010
We have uptime but is there a starttime?

Hi gurus,

Is it possible to get the time on when the server was re-started or does the output from who -b is the answer to my question? UNIX flavour is Solaris.

The uptime command gives information on how long the server has been up but I want to know when the server was started. The output from who -b does not seem right.

Any feedback will be very much appreciated. Thanks in advance.

Code:
server01 33% who -b
   .       system boot  Jul 11 09:22
server01 34% uptime
  2:35pm  up 2 day(s),  5:13,  8 users,  load average: 7.47, 7.35, 8.20

# 2  
Old 07-13-2010
But it is correct:
Code:
$ who -b
   .       system boot  Jun  8 13:11
$ date
Tue Jul 13 07:18:30 METDST 2010
$ uptime
  7:18am  up 34 days, 18:07,  71 users,  load average: 0.79, 0.86, 0.98

2010-06-08 13:11 + 34 days = 2010-07-12 13:11
2010-07-12 13:11 + 18:07 = 2010-07-13 07:18
This User Gave Thanks to pludi For This Post:
# 3  
Old 07-13-2010
Even though you have your answer, the last reboot/boot time can be found with the 'last' command

Quote:

bash-3.00# last boot

wtmp begins Tue Jul 13 02:30
This User Gave Thanks to bankai For This Post:
# 4  
Old 07-13-2010
Quote:
Originally Posted by pludi
But it is correct:
Code:
$ who -b
   .       system boot  Jun  8 13:11
$ date
Tue Jul 13 07:18:30 METDST 2010
$ uptime
  7:18am  up 34 days, 18:07,  71 users,  load average: 0.79, 0.86, 0.98

2010-06-08 13:11 + 34 days = 2010-07-12 13:11
2010-07-12 13:11 + 18:07 = 2010-07-13 07:18

Hi Pludi,

Thanks a lot ... How did you do the calculation ... ??? I think that is the "trick" that am looking for or did you calculated it manually ... ???
# 5  
Old 07-13-2010
That way calculated manually to illustrate the relation between boot time as give by "who -b"/"last boot", uptime, and the current time.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. War Stories

Once upon an uptime.

Hi All, Having recently started a new job, a Data Center Migration in fact I have been tasked with looking at some of the older Solaris boxes when I came across this little gem. nismas# uname -a SunOS nismas 5.5.1 Generic_103640-27 sun4u sparc SUNW,Ultra-1 nismas# uptime 10:37am up 2900... (2 Replies)
Discussion started by: gull04
2 Replies

2. Shell Programming and Scripting

Extract the uptime from the output of the uptime command

Hi! I want to extract the uptime from the output of the uptime command. The output: 11:53 up 3:02, 2 users, load averages: 0,32 0,34 0,43 I just need the "3:02" part. How can I do this? Dirk (6 Replies)
Discussion started by: Dirk Einecke
6 Replies

3. Linux

uptime options

Hi All is there a way that i can return uptime if the machine has been on for longer than 4 days thanks ab (3 Replies)
Discussion started by: ab52
3 Replies

4. Shell Programming and Scripting

Process Uptime

Hi, I need some help about a script i need to write. I want to check , if some specific process, are running since 2 hours. I tried to use a loop , grep my pid and use find -ctime on /proc directory, to list what i need. for i in `ps -ef |grep process |grep -v grep|awk '{print $2}'`... (2 Replies)
Discussion started by: rokerij
2 Replies

5. Solaris

having problem with uptime.

HI All, I have problem with "uptime" on one of the sun server.(SunOS 5.9 Generic_118558-11 sun4u sparc SUNW,Sun-Fire-V240).when i am issuing uptime command its not showing uptime.even its not showing output for who -b. $ uptime 11:01am 1 user, load average: 0.06, 0.04, 0.03 $ who -b $... (3 Replies)
Discussion started by: jeevanbv
3 Replies

6. Shell Programming and Scripting

Increment value (starttime)

Hi All, I have created a script... #!/bin/sh datafile=ABC2008101601.OUT indfile=ABCIND20081016.1.OUT waittime=600 starttime=0 while do if then echo "Indicator file has arrived." break else sleep 10; ((starttime=$starttime+10)) echo $starttime (2 Replies)
Discussion started by: Amit.Sagpariya
2 Replies

7. UNIX for Dummies Questions & Answers

Uptime

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)
Discussion started by: MastaFue
13 Replies

8. UNIX for Dummies Questions & Answers

uptime

On HP-UX, the 13th argument of uptime is sometime the load and sometime the word AVERAGE:??? 14 Jun 06 5:00pm up 44 days, 54 mins, 0 users, load average: 0.00, 0.02, 0.03 14 Jun 06 5:15pm up 44 days, 1:09, 0 users, load average: 0.00, 0.01, 0.01 When the time is in minutes, then the load... (1 Reply)
Discussion started by: qfwfq
1 Replies

9. UNIX for Dummies Questions & Answers

Getting uptime

I'm trying to get the uptime of my computer (Mac OS X) and I can go into the terminal and type "uptime" OK, and that gives me a string with the uptime in it. The problem is that the string changes a lot, and its very difficult to get the data I'm trying to extract out cleanly. Now I have 3... (2 Replies)
Discussion started by: Freefall
2 Replies

10. UNIX for Dummies Questions & Answers

uptime

Hi Folks uptime 12:24pm up 2 days, 3:12, 4 users, load average: 0.00, 0.00, 0.00 what does the load average figure mean.. regards Hrishy (2 Replies)
Discussion started by: xiamin
2 Replies
Login or Register to Ask a Question