ubuntu设置tightvncserver自动启动

来源:互联网 发布:网络综合布线公司转让 编辑:程序博客网 时间:2024/06/11 03:50
vi /etc/init.d/vnc#!/bin/bashPATH="$PATH:/usr/bin/"export USER="root"DISPLAY="1"DEPTH="24"GEOMETRY="1024x768"OPTIONS="-depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY} -localhost". /lib/lsb/init-functionscase "$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        ;;esacexit 0:wq!chmod +x /etc/init.d/vncupdate-rc.d vnc defaults
关闭vncserver
$ vncserver -kill :1
# 数字 1 为桌面号,对应客户端的端口为5901,以此类推2,3,4....
0 0
原创粉丝点击