1. Using the shutudown command, schedule a shutdown for five minutes from now and notify all users on the system of the shutdown.
[root@localhost]# shutdown +5 shutdown messages goes here
2. Using the shutdown command, reboot the machine immediately without delay.
[root@localhost]# shutdown -r now [root@localhost]# shutdown -r
3. Using systemctl, shutdown the system.
[root@localhost]# shutdown nowor
[root@localhost]# shutdown +0
Alternatively, not using the shutdown command.
[root@localhost]# init 0
[root@localhost]# systemctl halt
4. Schedule the system for a shutdown at 1:00am in the morning.
[root@localhost]# shutdown 01:00
5. Cancel the scheduled 1:00am shutdown.
[root@localhost]# shutdown -c
6. Using systemctl, reboot the the system.
[root@localhost]# systemctl reboot
7. Using any method of your choice, power off the system.
[root@localhost]# systemctl halt [root@localhost]# systemctl poweroff [root@localhost]# shutdown -P [root@localhost]# init 0
'Linux' 카테고리의 다른 글
Virtual Machines (0) | 2015.06.29 |
---|---|
Working with top (0) | 2015.06.29 |
Monitoring and calculating CPU load averages (0) | 2015.06.29 |
nice, renice, and ps (0) | 2015.06.29 |
pgrep, pkill, kill, and jobs (0) | 2015.06.29 |
Interrupt The Boot Process To Change The Boot Target (0) | 2015.06.29 |
Recovery password on Redhat7 or CentOS7 (0) | 2015.06.22 |
Time Zone 확인 및 변경 (0) | 2015.02.06 |
iptables (0) | 2015.02.05 |
NTP 설정 (0) | 2015.02.05 |