本篇文章介绍如何在CentOS8 Linux操作系统中装置Xfce桌面环境和LightDM(Light Display Manager)。

在Centos8中应用epel-release软件源装置Xfce4桌面时,发现装置之后的桌面是Gnome3的,许多xfce的工具打不开。所以钻研了几天,通过Fedora28 Server版本的零碎中,下载安装包拷贝到Centos8中,能够装置胜利,在此记录一下装置过程。

环境

CentOS Linux release 8.2.2004 (Core) 、CentOS Linux release 8.0.1905 (Core)

装置xfce4

这里应用的xfce4相干的安装包都是从Fedora28零碎中下载的,装在Centos8中或者有些不稳固,目前发现装上之后Firewalld有问题,如果不障碍应用,能够禁用Firewalld。

生产环境就不要这样玩了,本试验纯属测试一下而已。

Xfce4相干的安装包我曾经放在网盘里了:https://share.weiyun.com/VqEEZio1, 下载到本地,而后上传到Centos8中。

装置lrzsz,将下载好的 压缩包上传到零碎中。

[root@localhost ~]# dnf -y install lrzsz tar
[root@localhost ~]# rz

解压文件,并进入文件夹,开始装置

[root@localhost ~]# tar xvf Xfce_fd28.tar.gz
[root@localhost ~]# cd Xfce
[root@localhost Xfce]# dnf install -y * --skip-broken --nobest

设置开机启动到图形界面

开机启动lightdm显示管理器

[root@localhost ~]# systemctl enable lightdm

默认启动图形界面

[root@localhost ~]# systemctl set-default graphical.target
Removed /etc/systemd/system/default.target.
Created symlink /etc/systemd/system/default.target ¡ú /usr/lib/systemd/system/graphical.target.
敞开防火墙
[root@localhost ~]# systemctl disable firewalld
Removed /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.

设置中文显示

装置中文:

[root@localhost ~]# yum -y install wqy* glibc-langpack-zh

批改/etc/locale.conf

[root@localhost ~]# sed -i 's/en_US/zh_CN/' /etc/locale.conf
[root@localhost ~]# cat /etc/locale.conf
LANG="zh_CN.UTF-8"

重启一下零碎,进入桌面看一下吧:

登录界面

应用默认配置


到此曾经装置实现了!

总结

本篇文章介绍如何在CentOS8 Linux操作系统中装置Xfce桌面环境和LightDM(Light Display Manager)。