Difference between shutdown ( power off ) and restart ( reboot )

8

2

What is Difference between shutdown (power off) and restart (reboot) ?

  • What type of signals passing at time of reboot and poweroff, to where ?

  • What is difference between these two signals ?

At the time of reboot,

  • Is the operating system go to shutdown mode ?

  • If it goes shutdown, Which is make it to start again ?

Please correct it, if you find and mistakes in my questions

Kumar

Posted 2010-10-18T05:58:55.773

Reputation: 373

Answers

6

For the operating system, shutdown and reboot are practically the same thing.

The OS will shut down as usual in both cases. The only difference is the signal sent to the hardware at the very last moment.

To switch off/reboot the computer, the OS will send a special signal to the hardware once it is finished shutting down. It's only this signal which will be different between a reboot and a shutdown.

The way the signal is sent depends on the exact hardware platform. On modern systems it is usually done via ACPI.

sleske

Posted 2010-10-18T05:58:55.773

Reputation: 19 887

3

Gulshan

Posted 2010-10-18T05:58:55.773

Reputation: 819

en.wikipedia.org/wiki/Rebooting_(computing) – Martin – 2011-10-03T17:35:30.467

1

The difference is that during reboot system is entering runlevel 6 and for shutdown it is runlevel 0.

It is similar to running

init <runlevel_number>

For more details on runlevels see http://en.wikipedia.org/wiki/Runlevels

Under /etc/rc<runlevel_number>.d/ (e.g. /etc/rc6.d/) directories you will find script executed on entering specific runlevel.

Paweł Nadolski

Posted 2010-10-18T05:58:55.773

Reputation: 966