システムをすぐに再起動する
rebootはすぐにシステムを再起動するためのコマンドです。
通常システムの停止にはshutdownコマンドが使用されますが、rebootはこのshutdownコマンドの短縮形といえます。
shutdownコマンドでシステムの再起動を行う場合には、オプション「r」を引数としてつける必要がありますが、rebootは引数が必要ありません。
また、rebootと同様にすぐにシステムを停止するコマンドにhaltあります。
rebootの場合 [root@Lion ~]# reboot ←rebootコマンドを実行します。 Broadcast message from root (pts/0) (Wed Apr 11 17:17:07 2020): The system is going down for reboot NOW! ←ログインユーザーへ再起動のメッセージが表示され、再起動処理が開始されます。 shutdownの場合 [root@Lion ~]# shutdown -r now ←shutdownコマンドを実行します。 Broadcast message from root (pts/0) (Thu Jun 10 14:07:46 2020): The system is going down for reboot NOW! |