forked from longhr/ubuntu1604hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubuntu1604VNC.sh
52 lines (39 loc) · 1.47 KB
/
ubuntu1604VNC.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# #################################################################
# 脚本名称 : ubuntu1604VNC
# 脚本描述 : 自动安装配置和自动启动X11Vnc
# 编写日期 : 2016.6.13
# 作 者 : longhr
# 作者网站 : blog.csdn.net/longhr
# 软件版本 : 0.1
# 注意事项: 运行完5秒内会重启
# 免责声明 : 使用自由,后果自付
# #################################################################
# 步骤 1 - 安装 X11VNC
# #################################################################
sudo apt-get install x11vnc -y
# 步骤 2 - 配置访问密码
# #################################################################
sudo x11vnc -storepasswd /etc/x11vnc.pass
# 步骤 3 - 创建服务
# #################################################################
cat > /lib/systemd/system/x11vnc.service << EOF
[Unit]
Description=Start x11vnc at startup.
After=multi-user.target
[Service]
Type=simple
ExecStart=/usr/bin/x11vnc -auth guess -forever -loop -noxdamage -repeat -rfbauth /etc/x11vnc.pass -rfbport 5900 -shared
[Install]
WantedBy=multi-user.target
EOF
# 步骤 4 - 配配置防火墙端口,配置和启动服务
# ################################################################
echo "Configure firewall"
sudo ufw allow 5900
echo "Configure Services"
sudo systemctl enable x11vnc.service
sudo systemctl daemon-reload
# 步骤 5 - 重启
# ################################################################
sleep 5s
sudo shutdown -r now