vnc添加开机自启
时间:10-02
整理:3721RD
点击:
http://bbs.elecfans.com/jishu_900365_1_1.html
这是我的vnc安装教程。
设置开机启动,需要在/etc/init.d/中创建一个文件。例如
- sudo vim /etc/init.d/tightvncserver
- #!/bin/sh
- ### BEGIN INIT INFO
- # Provides: tightvncserver
- # Required-Start: $local_fs
- # Required-Stop: $local_fs
- # Default-Start: 2 3 4 5
- # Default-Stop: 0 1 6
- # Short-Description: Start/stop tightvncserver
- ### END INIT INFO
-
- # More details see:
- # http://www.penguintutor.com/linux/tightvnc
-
- ### Customize this entry
- # Set the USER variable to the name of the user to start tightvncserver under
- export USER='orangepi'
- ### End customization required
-
- eval cd ~$USER
-
- case "$1" in
- start)
- # 启动命令行。此处自定义分辨率、控制台号码或其它参数。
- su $USER -c '/usr/bin/tightvncserver -depth 16 -geometry 800x600 :1'
- echo "Starting TightVNC server for $USER "
- ;;
- stop)
- # 终止命令行。此处控制台号码与启动一致。
- su $USER -c '/usr/bin/tightvncserver -kill :1'
- echo "Tightvncserver stopped"
- ;;
- *)
- echo "Usage: /etc/init.d/tightvncserver {start|stop}"
- exit 1
- ;;
- esac
- exit 0
少数玩家默认用户不是orangepi的请自行更改USER变量。
然后给tightvncserver文件加执行权限,并更新开机启动列表。
- sudo chmod 755 /etc/init.d/tightvncserver
- sudo update-rc.d tightvncserver defaults
使用此命令手工启动VNC服务器程序:
- tightvncserver -geometry 800x600 :1
- tightvncserver -kill :1