一、安装 GNOME 桌面
GNOME 桌面是最常见的 CentOS 桌面
安装命令
yum -y groups install "GNOME Desktop" startx systemctl set-default graphical.target # 开机默认设置成图形模式 # systemctl set-default multi-user.target # 开机默认设置成命令模式 reboot # 重启
重启后就会发现安装成功,接下来做一些傻瓜配置就行
二、安装 KDE 桌面
安装命令
yum -y groups install "KDE Plasma Workspaces" echo "exec startkde" >> ~/.xinitrc startx # 如果是国外VPS,默认是只带英文系统,因此还需要配置kde桌面语言中文显示 yum list kde*chinese # 根据列出来的中文包文件名进行安装,我这里列出来的中文包只有kde-l10n-Chinese.noarch,因此: yum install kde-l10n-Chinese.noarch
三、安装 Cinnamon 桌面
首先添加EPEL存储库(从Fedora项目提供的EPEL存储库)Extra Packages for Enterprise Linux (EPEL)
yum -y install epel-release sed -i -e "s/]$/] sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/epel.repo yum --enablerepo=epel install [Package]
安装命令
yum --enablerepo=epel -y install cinnamon* echo "exec /usr/bin/cinnamon-session" >> ~/.xinitrc startx
四、安装 MATE 桌面
安装命令
yum --enablerepo=epel -y groups install "MATE Desktop" echo "exec /usr/bin/mate-session" >> ~/.xinitrc startx
五、安装 Xfce 桌面
安装命令
yum -y groupinstall X11 yum --enablerepo=epel -y groups install "Xfce" echo "exec /usr/bin/xfce4-session" >> ~/.xinitrc startx
如果需要在WINDOWS端远程桌面连接CENTOS的这些桌面系统
yum install epel* -y # 配置源 yum --enablerepo=epel -y install xrdp # 安装xrdp systemctl start xrdp # 启动xrdp并设置开机启动 systemctl enable xrdp reboot
参考:https://www.bnxb.com/linuxserver/27457.html
原文地址:https://www.cnblogs.com/zhuminghui/p/12118955.html
时间: 2024-10-09 15:35:24