-1

I want to know how much time is taken by Ubuntu 14.04 when we start it. So for this I have added the below line in rc.local

awk '{print int($1/3600)":"int(($1%3600)/60)":"($1%60)}' /proc/uptime > /var/log/uptime.log

It is showing about 28 seconds. Can someone let me know how can I get more information about what steps are adding to this 28 seconds?

tuk
  • 333
  • 5
  • 18

1 Answers1

-1

The bootchart package does this.

Andrew Schulman
  • 8,811
  • 21
  • 32
  • 47
  • 1
    You should explain how to install and use the package. – kasperd Feb 02 '18 at 23:57
  • Actually it does answer the question, just without any handholding. And no, I'm not going to write a tutorial on bootchart here. Why should I? I haven't used the package myself, and the OP can read the docs as well as I can. – Andrew Schulman Feb 04 '18 at 09:32