🃏

Enable /etc/rc.local on Ubuntu 20.04

Created
2021/02/17 06:33
1. /etc/systemd/system/rc-local.service에 다음과 같이 service 파일 직접 만들어주기
[Unit] Description=/etc/rc.local Compatibility ConditionPathExists=/etc/rc.local [Service] Type=forking ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes SysVStartPriority=99 [Install] WantedBy=multi-user.target
Bash
복사
2. 작성한 서비스 실행하기
sudo systemctl enable rc-local
Bash
복사
3. /etc/rc.local 파일 작성
#!/bin/bash ... exit 0
Bash
복사
4. /etc/rc.local 파일을 실행 가능한 파일로 만들어주기
sudo chmod +x /etc/rc.local
Bash
복사
E.O.D.