./categories/os
Ubuntu 부팅 자동시작
GUI (데스크톱)
sudo apt-get install bum # Boot-Up Manager
서비스 자동시작 (SysV)
sudo update-rc.d 서비스명 defaults # 등록
sudo update-rc.d 서비스명 remove # 제거
# CUI: sysv-rc-conf
Runlevel / 스크립트
runlevel # 또는 who -r
ln -s /etc/init.d/실제스크립트 /etc/rcN.d/S99이름
# 부팅 한 줄: /etc/rc.local (chmod +x)
# 종료 시: /etc/rc6.d/K99_이름
./comments