[步骤] VMware Workstation Player 的安装 (CentOS Linux & RHEL 版)

软件准备:

在 VMware 的官网上下载软件 VMware Workstation Player(本次使用的是 VMware-Player-15.5.6-16341506.x86_64.bundle):

https://my.vmware.com/cn/web/vmware/downloads/info/slug/desktop_end_user_computing/vmware_workstation_player/16_0

正文:

步骤一:系统环境要求

服务器系统要配置好可用的软件源

步骤二:安装 VMware 虚拟化平台的依赖软件

# yum -y install perl gcc kernel-devel libX11 libXinerama libXcursor libXtst elfutils-libelf-devel

步骤三:给 VMware 安装包执行权限

# chmod u+x VMware-Player-15.5.6-16341506.x86_64.bundle

(补充:本次添加权限的是 VMware-Player-15.5.6-16341506.x86_64.bundle)

步骤四:安装 VMware 虚拟化平台

# ./VMware-Player-15.5.6-16341506.x86_64.bundle

(补充:本次安装的是 VMware-Player-15.5.6-16341506.x86_64.bundle)

[步骤] TeamViewer 的安装 (CentOS Linux & RHEL)

软件准备:

在 TeamViewer 的官网上下载软件 TeamViewer:

https://www.teamviewer.cn/cn/download/linux/

正文:

步骤一:系统环境要求

服服务器系统要配置好可用的软件源

步骤二:安装 EPEL 软件库

# rpm -Uvh https://dl.fedoraproject.org/pub/epel/8/Everything/x86_64/Packages/e/epel-release-8-8.el8.noarch.rpm

步骤三:安装图形系统桌面

3.1 安装图形系统桌面

# yum groupinstall -y "Server with GUI"

3.2 禁止图形系统桌面以 Wayland 的方式启动

# vim /etc/gdm/custom.conf

将以下内容:

#WaylandEnable=false

修改为:

WaylandEnable=false

(补充:此步骤是为了避免让 TeamViewer 连接时出现黑屏)

3.3 设置系统开机进入图形系统桌面

# systemctl set-default graphical.target

步骤四:安装 TeamViewer

# yum -y localinstall teamviewer_15.9.5.x86_64.rpm

(补充:这里以安装 15.9.5.x86_64 版本的 teamviewer 为例)

步骤四:重启系统

# reboot