Linux 재부팅 하는 방법
페이지 정보
본문
리눅스는 시스템 종료와 재부팅 명령어가 여러가지가 있습니다.
1. reboot
[root@localhost ~]# reboot
시스템 재부팅
[root@localhost ~]# reboot -f
시스템 강제 재부팅
2. shutdown -r
[root@localhost ~]# shutdown -r now
즉시 시스템 재부팅
[root@localhost ~]# shutdown -r 5
5분후 시스템 재부팅
[root@localhost ~]# shutdown -r 12:12
12시 12분에 시스템을 재부팅 (hh:mm 형식)
[root@localhost ~]# shutdown -c
예약된 shudown 명령 취소
3. shutdown -h
[root@localhost ~]# shutdown -h now
즉시 시스템 종료
[root@localhost ~]# shutdown -h 5
5분후 시스템 종료
[root@localhost ~]# shutdown -h 12:12
12시 12분에 시스템을 종료 (hh:mm 형식)
4. halt
[root@localhost ~]# halt
시스템 종료
[root@localhost ~]# halt -f
시스템 강제종료
5. init
[root@localhost ~]# init 0
시스템 종료
[root@localhost ~]# init 6
시스템 재부팅
참고자료
http://idchowto.com/리눅스-시스템-종료-및-재부팅-명령어/
http://rootblog.tistory.com/1
1. reboot
[root@localhost ~]# reboot
시스템 재부팅
[root@localhost ~]# reboot -f
시스템 강제 재부팅
2. shutdown -r
[root@localhost ~]# shutdown -r now
즉시 시스템 재부팅
[root@localhost ~]# shutdown -r 5
5분후 시스템 재부팅
[root@localhost ~]# shutdown -r 12:12
12시 12분에 시스템을 재부팅 (hh:mm 형식)
[root@localhost ~]# shutdown -c
예약된 shudown 명령 취소
3. shutdown -h
[root@localhost ~]# shutdown -h now
즉시 시스템 종료
[root@localhost ~]# shutdown -h 5
5분후 시스템 종료
[root@localhost ~]# shutdown -h 12:12
12시 12분에 시스템을 종료 (hh:mm 형식)
4. halt
[root@localhost ~]# halt
시스템 종료
[root@localhost ~]# halt -f
시스템 강제종료
5. init
[root@localhost ~]# init 0
시스템 종료
[root@localhost ~]# init 6
시스템 재부팅
참고자료
http://idchowto.com/리눅스-시스템-종료-및-재부팅-명령어/
http://rootblog.tistory.com/1
댓글목록
등록된 댓글이 없습니다.