在 RHEL/CentOS 中使用 GNOME 以外的窗口管理器

在 RHEL/CentOS 中使用 GNOME 以外的窗口管理器

我正在家里的备用磁盘上运行centos 9,测试驱动最新版本以了解它的全部内容。

有人提到,多年来,默认的 gnome 窗口管理器并不是最好的,而且还有更好的。

有人可以提供一些简单的说明和建议来安装 RHEL/CentOS 的替代窗口管理器吗?对于版本 9 或 7.9...我从未运行过版本 8,也不打算运行。

我在家里很少使用Linux,主要是为了支持在工作中使用Linux,这是我的主要兴趣......

这值得么在工作环境中删除 GNOME 窗口管理器并使用其他东西,如果是的话怎么办,这很容易完成还是有风险?

答案1

# update the repos
sudo dnf upgrade --refresh

# enable the crb
sudo dnf config-manager --set-enabled crb

# enable the epel-repos
sudo dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm https://dl.fedoraproject.org/pub/epel/epel-next-release-latest-9.noarch.rpm

# check to see if xfce is available (or other desktop environments)
sudo dnf group list

# install xfce (de) with xorg (wm)
sudo dnf groupinstall "Xfce" "base-x"

# set the default
echo "exec /usr/bin/xfce4-session" >> $HOME/.xinitrc

sudo systemctl set-default graphical

# reboot for the changes to take effect
shutdown -r

相关内容