라즈베리파이 켜고 끄기 명령어 모음
#halt , shutdown, reboot, init #명령어 옵션을 보고 싶다면 명령어 끝에 --help #바로끄기 sudo halt #강제종료 sudo halt -f #재부팅 sudo halt --reboot #바로끄기 sudo shutdown -h now #재부팅 sudo shutdown -r now #10분뒤에 끄기 sudo shutdown -h +10 #정해진시간에 끄기 sudo shutdown -h 23:00 #5분뒤에 재부팅 sudo shutdown -r +5 #정해진시간에 재부팅 sudo shutdown -h 12:15 #예약취소 sudo shutdown -c #재부팅 sudo reboot #강제재부팅 sudo reboot -f #끄기 init 0 #재부팅 init 6