ubuntu设置tightvncserver自动启动

vi /etc/init.d/vnc
#!/bin/bash
PATH="$PATH:/usr/bin/"
export USER="root"
disPLAY="1"
DEPTH="24"
GEOMETRY="1024x768"
OPTIONS="-depth ${DEPTH} -geometry ${GEOMETRY} :${disPLAY} -localhost"
. /lib/lsb/init-functions


case "$1" in
 start)
 log_action_begin_msg "Starting vncserver for user '${USER}' on localhost:${disPLAY}"
 su ${USER} -c "/usr/bin/tightvncserver ${OPTIONS}"
 ;;

 stop)
 log_action_begin_msg "Stopping vncserver for user '${USER}' on localhost:${disPLAY}"
 su ${USER} -c "/usr/bin/tightvncserver -kill :${disPLAY}"
 ;;

 restart)
 $0 stop
 $0 start
 ;;

 *)
 echo "Usage: /etc/init.d/vnc (start|stop|restart)"
 exit 1
 ;;
esac

exit 0
:wq!
chmod +x /etc/init.d/vnc
update-rc.d vnc defaults
关闭vncserver
$ vncserver -kill :1
# 数字 1 为桌面号,对应客户端的端口为5901,以此类推2,3,4....

相关文章

目录前言一、创建Hadoop用户二、更新apt和安装Vim编辑器三、...
原文连接:https://www.cnblogs.com/yasmi/p/5192694.html ...
电脑重启后,打开VirtualBox,发现一直用的虚拟机莫名的消失...
参见:https://blog.csdn.net/weixin_38883338/article/deta...
Ubuntu 18.04 LTS 已切换到 Netplan 来配置网络接口。Netpla...
介绍每个 Web 服务都可以通过特定的 URL 在 Internet 上访问...