当前位置:   article > 正文

命令行版 Centos 7 虚拟机安装 xfce4 桌面 + x11vnc + novnc

xfce4

安装命令行版 Centos 7 虚拟机

选择最小安装即可,安装后是没有桌面的

image-20221104141252209

xfce4 桌面环境

安装 x server

yum -y groupinstall "X Window system"
  • 1

安装、启动 xfce4

image-20221104143822384

由于 xfce 组没有在默认的 yum 源中,需要先安装额外的源

yum -y install epel-release
  • 1

image-20221104143738743

安装 Xfce

yum -y groupinstall "Xfce"
  • 1

安装完成之后,使用 systemctl get-default 查看一下系统的运行级别,默认是 multi-user.target,然后执行 systemctl set-default graphical.target 将其默认值设置为图形化。

systemctl get-default
systemctl set-default graphical.target
  • 1
  • 2

image-20221104144252543

重启虚拟机即可进入图形化界面,可以看到桌面是 xfce4 的风格

image-20221104144533278

image-20221104144612093

x11vnc

yum -y install x11vnc
  • 1

x11vnc 的默认端口是 5900,需要放开防火墙的限制

firewall-cmd --add-port=5900/tcp --permanent
firewall-cmd --reload
  • 1
  • 2

以默认配置启动 x11vnc

x11vnc -display :0
  • 1

看到如下的输出代表启动成功了,可以使用 vnc viewer 测试一下

image-20221104145809889

vnc viewer 效果

image-20221104150339482

NOTE

  1. -forever:使用默认配置启动的话,在 vnc viewer 断开连接后,x11vnc server 后自动关闭,可添加 -forever 选项防止自动关闭
  2. -shared:同一时间默认只允许一个 vnc viewer 连接,可添加 -shared 选项以允许多个 vnc viewer 同时连接
  3. -bg:默认是前台运行,可添加 -bg 选项以后台运行
  4. -repeat:在长按某个按键时无法连输输入,可添加 -repeat 选项来修复
  5. -scale:可修改分辨率
  6. -rfbport:可修改端口

比如:

x11vnc -display :0 -rfbport 5901 -scale 1280x1024 -repeat -shared -forever -bg
  • 1

在修改端口后要更改防火墙设置,否则 vnc viewer无法连接

firewall-cmd --add-port=5901/tcp --permanent
firewall-cmd --reload
  • 1
  • 2

novnc

yum -y install git python36
git clone https://github.com/novnc/noVNC.git
cd noVNC/
./utils/novnc_proxy --vnc localhost:5901

firewall-cmd --add-port=6080/tcp --permanent
firewall-cmd --reload
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

image-20221104165817293

启动成功之后可以使用上图的地址打开 novnc 的 web 界面,将 bogon 换成虚拟机的 IP

image-20221104165955884

image-20221104170111671

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/74448
推荐阅读
相关标签
  

闽ICP备14008679号