터미널에서 시스템을 종료하거나 재부팅하려면 어떻게합니까?


답변:


1045

종료의 경우 :

sudo poweroff

다시 시작 :

sudo reboot

부록 : 키워드가 "잠금"이므로 "su"에서 실행되는 "재부팅"과 같은 명령을 입력 할 수없는 경우 키보드를 사용하십시오. Alt+ PrintScreen/SysRq, 단추를 누르고 "REISUB"를 입력하십시오. 대문자 일 필요는 없습니다. 컴퓨터가 부드럽게 다시 시작됩니다. http://blog.kember.net/articles/reisub-the-gentle-linux-restart/


9
sudo실제로 필요하지 않을 수도 있습니다.
Nicolas Raoul

3
Armbian에서는 reboot찾을 수 없습니다. 대신 /sbin/reboot작동합니다.
Mark Jeronimus

1
@MarkJeronimus 그것은 당신에 따라 PATH변수와 SECURE_PATH/etc/sudoers파일.
Theoremiser

3
대해 shutdown nowshutdown -r now?
Post Self

@NicolasRaoul nopes, 나를 위해 이것을없이 보았습니다 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.
Paramvir Singh Karwal

202

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

@jai의 목표는 op와 다른 모든 사람들에게 그가 요청한 것을 수행하는 다른 방법을 제공하는 것입니다.
fromnaboo

1
보인다는 shutdown -r now것이 바람직하다 reboot두 번째는 유지 보수로 모드를 넣을 수
ubiquibacon


sudo halt어떤 경우에는 종료를 수행하지 않는 이유를 누구나 설명 할 수 있습니까 sudo halt -p?
Hee Jin

89

비밀번호를 싫어 sudo하고 ( ) 원 라이너를 좋아하십니까?

우분투 15.04 이상

이것은 Ubuntu의 사용 systemd대신에Upstart

systemctl poweroff
systemctl reboot
systemctl suspend
systemctl hibernate
systemctl hybrid-sleep

때문에 최대 절전 모드는 일반적으로 우분투 시스템에서 기본적으로 사용되지 않습니다, 당신은 체크하여이를 활성화 할 수 있습니다 이 답변 .

우분투 14.10 이전

일시 휴업:

/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

19
저는 항상 GUI가 sudo없이 시스템을 어떻게 종료시키는 지 궁금했습니다. 나는 이것이 있다고 가정합니다.
triunenature

나는 첫 번째 라인의 사이드 쇼 스텝 업 느낌을 좋아한다
duhaime

오늘 나는에 이점을 발견했다 systemd.
Hashim

37

16.04에 필요 없음 sudo

종료하려면 :

poweroff

재부팅하려면 :

reboot

2
Failed to set wall message, ignoring: Interactive authentication required.ssh에서
kyb

15

사용하다

sudo shutdown -h (시간) (메시지)

컴퓨터가 종료되고 중지됩니다. 그것이 바로 그 -h목적입니다. 그런 다음 시간 영역에서 종료 지연 (분)을 선택할 수 있으며 원하는 경우 메시지 영역에 브로드 캐스트 메시지를 보낼 수 있습니다 (예 : 작거나 종료 중입니다 : P).

컴퓨터를 다시 시작하려면 다음을 입력하십시오.

sudo shutdown -r (시간) (메시지)

이제 컴퓨터를 종료하고 중지하는 대신 컴퓨터가 종료되면 컴퓨터를 다시 시작합니다. :)

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.