답변:
종료의 경우 :
sudo poweroff
다시 시작 :
sudo reboot
부록 : 키워드가 "잠금"이므로 "su"에서 실행되는 "재부팅"과 같은 명령을 입력 할 수없는 경우 키보드를 사용하십시오. Alt+ PrintScreen/SysRq, 단추를 누르고 "REISUB"를 입력하십시오. 대문자 일 필요는 없습니다. 컴퓨터가 부드럽게 다시 시작됩니다. http://blog.kember.net/articles/reisub-the-gentle-linux-restart/
sudo
실제로 필요하지 않을 수도 있습니다.
reboot
찾을 수 없습니다. 대신 /sbin/reboot
작동합니다.
PATH
변수와 SECURE_PATH
에 /etc/sudoers
파일.
shutdown now
와 shutdown -r now
?
sudo
. Failed to set wall message, ignoring: Interactive authentication required. Failed to reboot system via logind: Interactive authentication required. Failed to open /dev/initctl: Permission denied Failed to talk to init daemon.
CTRL+ ALT+로 터미널을 열고 T다음 명령을 수행하십시오
시스템을 종료하려면 :
sudo shutdown -h now
재시작하기 위해:
sudo reboot
다시 시작 명령이 하나 더 있습니다.
sudo shutdown -r now
사용자 중 하나가 언급 한 다른 방법.
종료의 경우 :
sudo halt
또는:
sudo init 0
다시 시작 :
sudo init 6
shutdown
다음 중 하나를 사용하여 명령 에 대한 자세한 정보를 얻을 수 있습니다 .
shutdown --help
man shutdown
shutdown -r now
것이 바람직하다 reboot
두 번째는 유지 보수로 모드를 넣을 수
sudo halt
어떤 경우에는 종료를 수행하지 않는 이유를 누구나 설명 할 수 있습니까 sudo halt -p
?
비밀번호를 싫어 sudo
하고 ( ) 원 라이너를 좋아하십니까?
이것은 Ubuntu의 사용 systemd
대신에Upstart
systemctl poweroff
systemctl reboot
systemctl suspend
systemctl hibernate
systemctl hybrid-sleep
때문에 최대 절전 모드는 일반적으로 우분투 시스템에서 기본적으로 사용되지 않습니다, 당신은 체크하여이를 활성화 할 수 있습니다 이 답변 .
일시 휴업:
/usr/bin/dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Stop
재시작:
/usr/bin/dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Restart
당신이 좋아할만한 다른 명령들 :
매달다, 중지하다, 뜨게하다:
/usr/bin/dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Suspend
최대 절전 모드 : (시스템에서 활성화 된 경우)
/usr/bin/dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Hibernate
systemd
.