Deepin Linux操作系统安装VNC Server
Deepin Linux操作系统安装VNC Server
深度操作系统我算得上深度用户了,已经把这套系统用于日常开发工作,并且大部分的办公工具都已经完全适配,能够正常的适应开发工作。
对于一些用户轻量的文档办公来说WPS、各种协同文档云平台已经完全满足文档编写的需求了。
Window有自带有远程桌面或者使用向日葵远控、TeamViewer之类的软件,在Linux下需要安装VNC Server就能实现远程桌面控制。
开始
1、安装服务
sudo apt-get update
sudo apt-get install x11vnc
2、配置密码
x11vnc -storepasswd
3、配置服务自动启动
新建或编辑/etc/systemd/system/vncserver.service
[Unit]
Description=Shadowsocks
[Service]
TimeoutStartSec=0
ExecStart=x11vnc -auth guess -once -loop -noxdamage -repeat -rfbauth ~/.vnc/passwd -rfbport 5900 -shared
[Install]
WantedBy=multi-user.target
4、开启自动启动并启动vncserver服务
systemctl enable vncserver
systemctl start vncserver
搞定。。。