美文网首页
Ubuntu18.04桌面版远程教程VNC

Ubuntu18.04桌面版远程教程VNC

作者: Firetheworld | 来源:发表于2020-02-26 11:25 被阅读0次

系统:Ubuntu18.04LTS

远程客户端软件:VNC


目录:

一、最小化安装Ubuntu18.04系统。
二、配置网络。
三、更新源
四、安装ssh
五、安装dconfig-edit,关闭权限
六、配置远程。


一、安装ubuntu18.04,

略过。

二、配置网络:

编辑网络配置文件:sudo vi /etc/netplan/01-network-manager-all.yaml


# Let NetworkManager manage all devices on this system
network:
version: 2
    ethernets:
         eno1:
            addresses: [10.192.38.171/26]  #IP、子网掩码
            gateway4: 10.192.38.129          #网关
            nameservers:
                    addresses: [114.114.114.114]      #DNS
   

配置生效:sudo netplan apply

三、更新源

备份源地址,
sudo cp /etc/apt/sources.list{,_bak}
更改/etc/apt/sources.list

sed -i "s#security.ubuntu.com#mirrors.aliyun.com#g" /etc/apt/source.list
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed universe multiverse

更新系统:sudo apt update

四、安装ssh,并设置开机自启动

sudo apt -y install ssh
sudo systemctl start ssh &&sudo systemctl enable ssh

五、安装dconfig-edit,关闭权限

打开之后,依次展开org->gnome->desktop->remote-access,然后取消 “requlre-encryption”的勾选即可。如图所示:

image.png

六、配置远程。
安装VNC:

apt-get update && apt-get -f -y install
curl -O https://www.realvnc.com/download/file/vnc.files/VNC-Server-6.4.1-Linux-x64.deb
dpkg -i VNC-Server-6.4.1-Linux-x64.deb
systemctl start vncserver-x11-serviced && systemctl enable vncserver-x11-serviced

使用key,命令为:

sudo vnclicense -add WHJRK-UXY7V-Q34M9-CZU8L-8KGFA

开启自动登陆

image.png

相关文章

  • Ubuntu18.04桌面版远程教程VNC

    系统:Ubuntu18.04LTS 远程客户端软件:VNC 目录: 一、最小化安装Ubuntu18.04系统。二、...

  • ubuntu VNC远程连接

    对于Ubuntu18.04的远程桌面,其官方默认内置了vino远程服务,这个服务原生兼容VNC协议,然而还有很多V...

  • CentOS搭建VNC远程桌面服务

    CentOS搭建VNC远程桌面服务 前言 必要知识 本教程假设您已学习以下 Linux 基本操作: 连接 SSH ...

  • Ubuntu18.04实现VNC远程桌面

    之前使用远程Linux系统电脑的时候采用的是ssh与teamviewer,但ssh没有图形画面,无法使用VMD等软...

  • ubuntu VNC连接树莓派

    其实ubuntu vnc连接树莓派很简单,首先给树莓派安装vnc服务,然后打开vnc服务,最后ubuntu用远程桌...

  • 任务161:Msf-弱点扫描

    用vnc模块爆破出密码之后,就可以用vnc连接工具去连接目标主机了。(vnc和远程连接相关) VNC无密码访问模块...

  • 我的Raspberry Pi 3B连接之旅(三)

    Step Three 树莓派开机自动启动VNC 参考帖子:树莓派3B远程VNC的设置(包括开机启动) 什么是VNC...

  • ubuntu远程图形桌面控制

    windows通过chrome插件VNC远程桌面 1.sudo apt-get install xrdp vnc4...

  • 工具

    1、远程连接 VNC Viewer(需配置允许VNC功能) 2、传输文件 采用ssh,使用Flash FTP工具(...

  • 使用Orange Pi Zero做小小服务器(VNC篇)

    安装xfce4桌面 安装vnc服务 设置vnc密码 安装完成后对vnc4server设置密码: 尝试远程 使用 v...

网友评论

      本文标题:Ubuntu18.04桌面版远程教程VNC

      本文链接:https://www.haomeiwen.com/subject/cpziictx.html