반응형
/********************************************************************************************
-- Title : [Lnx] 리눅스 시스템 종료 및 재부팅
-- Reference : gimbonggu.blog.me
-- Key word : centos linux shutdown reboot halt
********************************************************************************************/
-- 참고 : http://dbrang.tistory.com/735

-- 시스템 재부팅
# reboot
# shutdown -r now
# init 6

-- 시스템 종료
# halt
# shutdown -h now
# init 0

# halt -n    // sync 작업 없이 종료
# halt -f    // 강제 종료
# halt -p   // 시스템 종료 + 전원 OFF

# poweroff         // 시스템 종료 + 전원 OFF
# poweroff -n     // sync 작업 없이 종료
반응형

+ Recent posts