前言

最近搞了台 云服务器(2H2G) 玩玩,其实一直想挂一些奇奇怪怪的东西到服务器?就装了Xfce ,搭了个 vnc 来实现远程桌面。

服务器系统为 Ubuntu-20.04

原教程源自 Mintimate 大佬


效果展示


教程

准备工作

  1. 去服务器安全组 放行5901端口

  2. 准备 SSH连接工具 或在 宝塔终端

  3. 连接服务器 更新依赖包

    1
    2
    # 更新/重载源
    sudo apt-get update
  4. 本地 下载并安装 VNC Server

安装Xfce

  1. 安装Xfce桌面环境 安装时遇到提示 y/n , 默认 y

    1
    sudo apt-get install xfce4 xfce4-goodies
  2. 弹出窗口,选择 轻量 , OK

安装vnc

  1. 安装tightvncserver 安装时遇到提示 y/n , 默认 y

    1
    sudo apt-get install tightvncserver
  2. 启动 vnc

    1
    2
    3
    vncserver   # 默认

    # vncserver -geometry 1920x1080 # 分辨率 1920 x 1080
  3. 第一次启动需要设置密码注:提示 y/n ,选 n

  4. 开启后,在 本地 VNC Server 连接 5901端口 , 例: ip:5901

    1
    ip:5901
  5. 弹出窗口,点击 同意 , 输入密码后进入系统

  6. 关闭 vnc

    1
    vncserver -kill :1

设置

  • 安装谷歌浏览器
  1. 下载并安装谷歌浏览器
    1
    2
    3
    4
    5
    6
    7
    # 临时目录,放Chrome安装包
    mkdir temp
    cd temp
    # 下载Chrome安装包最新稳定版本
    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    # 安装
    sudo dpkg -i google-chrome-stable_current_amd64.deb; sudo apt-get -f install
  2. 重启vnc
  • 设置系统语言(可选)
  1. 在本地找到系统字体目录 C:\Windows\Fonts

    1
    C:\Windows\Fonts
  2. 复制一个或多个字体上传到服务器 /usr/local/share/fonts/ 目录下 (PS: 其实选一个中文字体就行了)

    1
    /usr/local/share/fonts/
  3. 重启vnc

wine(可选)

按需要安装 ,我需要挂载exe软件,所以就装了。 官方教程

  1. 如果您使用的是 64 位系统,请开启 32bit 架构支持(如果您之前没有开启的话):

    1
    sudo dpkg --add-architecture i386 
  2. 下载添加仓库密钥:

    1
    sudo wget -nc -O /usr/share/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
  3. 添加仓库:

    1
    sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources
  4. 更新安装包:

    1
    sudo apt update
  5. 稳定分支 安装包:

    1
    sudo apt install --install-recommends winehq-stable
  6. 现在你在系统 启动exe 相关软件就会有弹窗提示安装环境 ,点击 安装 即可

常见问题

无法正常进入系统(黑屏)

该方法源自 b站评论区 酪氨酸转移RNA

解决方法:

  1. 设置xstartup文件:

    1
    vi ~/.vnc/xstartup
  2. 将原文件注释掉,只添加下面两行:

    1
    2
    xrdb $HOME/.Xresources 
    startxfce4 &
  3. Esc 返回, :wq 保存退出
    1
    :wq
  4. 重启vnc

无法打开谷歌浏览器

解决方法:

  1. 找到 谷歌浏览器所在目录 /usr/share/applications

    1
    /usr/share/applications
  2. 右键属性 ,点击 启动器 , 在命令行后 添加 -no-sandbox 参数 (注意:先加空格再加参数)

    1
    -no-sandbox

补充

其实设置中文字体还是会有部分英文……

Xfce换主题可查看 Mintimate 大佬 教程