VNC 를 설치한건 좋은데 부팅시 자동 실행이 안되네요
불편하니 Service에 등록 해서 자동 시작을 하게 합니다
근데 /etc/init.d 에 시작 스크립트가 없...
그래서 검색해보니 외국블로그에서 좋은걸 건짐
에디터를 이용해서 스크립트를 작성
sudo vim /etc/init.d/tightvncserver
#!/bin/sh # /etc/init.d/tightvncserver # Set the VNCUSER variable to the name of the user to start tightvncserver under VNCUSER='pi' case "$1" in start) su $VNCUSER -c '/usr/bin/tightvncserver :1' echo "Starting TightVNC server for $VNCUSER" ;; stop) pkill Xtightvnc echo "Tightvncserver stopped" ;; *) echo "Usage: /etc/init.d/tightvncserver {start|stop}" exit 1 ;; esac exit 0 |
pi@rasp2-retropie:~ $ sudo vim /etc/init.d/tightvncserver
#!/bin/sh # /etc/init.d/tightvncserver # Set the VNCUSER variable to the name of the user to start tightvncserver under VNCUSER='pi' case "$1" in start) su $VNCUSER -c '/usr/bin/tightvncserver :1' echo "Starting TightVNC server for $VNCUSER" ;; stop) pkill Xtightvnc echo "Tightvncserver stopped" ;; *) echo "Usage: /etc/init.d/tightvncserver {start|stop}" exit 1 ;; esac exit 0 ~ ~ ~ "/etc/init.d/tightvncserver" [readonly] 19L, 421C 1,1 All |
sudo chmod 755 /etc/init.d/tightvncserver
sudo update-rc.d tightvncserver defaults
작성한 스크립트의 권한을 수정하고
Service 에 기본으로 등록
참고
Raspberry Pi Jessie 라즈베리파이 - WordPress 4.7 설치 (0) | 2017.05.08 |
---|---|
Raspberry Pi jessie - install git (0) | 2017.03.15 |
Raspberry Pi jessie - VNC install & VNC Viewer Connect 접속 (0) | 2017.01.16 |
Raspberry Pi Pixel - Litecoin 라이트코인 cpuminer (0) | 2017.01.15 |
Raspberry Pi jessie - XRDP install & Microsoft Remote Desktop connect 접속 (0) | 2017.01.08 |
댓글 영역