为桌面开发配置了一个新设备,VNC需要为日常远程访问进行配置。
Ubuntu Desktop 18.04默认提供远程桌面共享,但是桌面共享使用同一个桌面,远程桌面共享Gnome消耗网络带宽,在远程访问下基本不能流畅使用,所以VNC服务需要单独配置。
对于远程桌面,xfce4足够轻,占用带宽少,响应速度也足够快,所以选择xfce4作为远程桌面。
安装vnc4server,xfce4
$ sudo apt install vnc4server xfce4 xfce4-goodies安装后配置VNC登录密码
$ vncpasswd启动VNC服务器
$ vncserver将启动:1会话,默认情况下创建VNC xstartup配置文件。
终止已启动的会话以配置xstartup
$ vncserver -kill :1打开~/。vnc/xstartup修改配置信息
#!/bin/sh# Uncomment the following two lines for normal desktop:unset SESSION_MANAGERunset DBUS_SESSION_BUS_ADDRESSstartxfce4 &要重新启动VNC服务器
$ vncserver此时,可以通过VNC查看器访问它
& ltip>。:5901
在此过程中,由于防火墙配置,5901端口可能无法使用
$ sudo ufw allow from any to any port 5901 proto tcp为了更方便地使用VNC服务,您可以创建文件/etc/systemd/system/vncserver @ service。
[Unit]Deion=Systemd VNC server startup for Ubuntu 18.04After=syslog.target network.target[Service]Type=forkingUser=<your username>ExecStartPre=-/usr/bin/vncserver -kill :%i &> /dev/nullExecStart=/usr/bin/vncserver -depth 24 -geometry 800x600 :%iPIDFile=/home/<your username>/.vnc/%H:%i.pidExecStop=/usr/bin/vncserver -kill :%i[Install]WantedBy=multi-user.target重新加载系统配置
$ sudo systemctl daemon-reload想要开始:1个会话
$ sudo service vncserver@1 start想要停止:1个会话
$ sudo service vncserver@1 stop将服务用作启动项目
$ sudo systemctl enable vncserver@1VNC浏览器安装在苹果电脑上
brew install homebrew/cask/vnc-viewer1.《vncserver Ubuntu Desktop 18.04安装VNC》援引自互联网,旨在传递更多网络信息知识,仅代表作者本人观点,与本网站无关,侵删请联系页脚下方联系方式。
2.《vncserver Ubuntu Desktop 18.04安装VNC》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。
3.文章转载时请保留本站内容来源地址,https://www.lu-xu.com/guoji/1054762.html