Ubuntu1804 LTS 下设置远程桌面

本文介绍在Ubuntu1804LTS上配置远程桌面的方法,通过安装和设置Vino实现无需每次连接确认的远程访问。文章详细说明了禁用vino加密、安装必要软件、创建systemd单元文件及启动服务的步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Ubuntu1804 LTS 下设置远程桌面

参考ubuntu的官方文档: https://help.ubuntu.com/lts/ubuntu-help/sharing-desktop.html.zh-CN

只需要安装vino,然后在设置中将共享桌面打开即可,将“访问选项”设为“需要密码”,这样就不用每次连接都需要被连接一方的确认了。用VNC Viewer连接即可。

需要注意的一个问题是要将vino的加密选项设为false,不然无法连接成功。网上的教程也是五花八门,实际上只需要在命令行执行一句话即可:
gsettings set org.gnome.Vino require-encryption false,

另外还需要安装:
apt-get install vino
systemctl enable vino
apt-get install vnc4server tightvncserver

reboot


create a systemd unit or service to run vino server at startup

cd /etc/systemd/system/
sudo vim vinostartup.service
[Unit]
Description = description about the service
After = network.target
[Service]
ExecStart = /usr/lib/vino/vino-server
[Install]
WantedBy = multi-user.target

Enable the service

sudo systemctl enable vinostartup.service

Verify it using below command vinostartup.service will be there

ls multi-user.target.wants/

If you don’t want to wait until next boot (it’s already enabled) we can start the service

sudo systemctl start vinostartup.service
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值