用yum来安装或卸载CentOS图形界面包


命令行模式安装图形界面
yum grouplist 检查已安装的组
yum groupinstall "X Window System"
yum groupinstall "GNOME Desktop Environment"
startx
或者init 5
就OK。
重新安装了带图形界面模式的centos系统,来实验yum方式卸载图形界面
图形界面想要卸载:
yum groupremove "GNOME Desktop Environment"
yum groupremove "X Window System"

以图形界面安装的linux 卸载图形界面之后会提示错误
init: Id "x" respawning too fast: disabled for 5 minutes
解决的办法是
vi /etc/inittab
找到这段文字 把这段文字中id后面的数字改为3 id:3:initdefault 让系统以文本界面启动
找到这段文字x:5:respawn:/etc/X11/prefdm -nodaemon注释掉!

执行“startx”报错“waiting for X server to shut down Server terminated successfully (0). Closing log file. ”

解决办法如下:

yum groupinstall "KDE Desktop"

执行以上代码,图形化界面安装成功.

时间: 2024-10-13 19:52:01

用yum来安装或卸载CentOS图形界面包的相关文章

使用yum来安装或卸载CentOS图形界面包

命令行模式安装图形界面 yum grouplist 检查已安装的组 yum groupinstall "X Window System" yum groupinstall "GNOME Desktop Environment" startx 或者init 5 就OK. 重新安装了带图形界面模式的centos系统,来实验yum方式卸载图形界面 图形界面想要卸载: yum groupremove "GNOME Desktop Environment"

android 实现静默安装、卸载(图)

android中应用的安装卸载,大家(用android设备的)肯定不陌生.这里就来浅谈android应用的安装.卸载的实现方式. 1.系统安装程序 android自带了一个安装程序---/system/app/PackageInstaller.apk.大多数情况下,我们手机上安装应用都是通过这个apk来安装的.代码使用也非常简单: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /* 安装apk */ public static void installApk(

在CentOS 7上使用Yum源安装和卸载 MongoDB 3.4

1.配置Yum源 1 vim /etc/yum.repos.d/mongodb-org-3.4.repo [mongodb-org-3.4]   name=MongoDB Repository    baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/x86_64/    gpgcheck=1    enabled=1    gpgkey=https://www.mongodb.org/static/pg

yum方式安装和卸载nginx

1.安装 yum install -y nginx如果无法安装,执行 rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 执行完成后在执行 yum install -y nginx安装完成后启动:nginx测试配置文件是否在正确:nginx -t重启:nginx -s reload查看nginx进程:ps -ef |grep nginx关闭服务:ng

mysql 安装以及卸载 CentOS 7

wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.24-1.el7.x86_64.rpm-bundle.tar 安装:mkdir mysqltar -xf mysql-5.7.22-1.el7.x86_64.rpm-bundle.tar -C mysqlcd mysql rpm -qa | grep mariadbrpm -e mariadb-libs-5.5.56-2.el7.x86_64 --nodeps yum -y

Linux 安装和卸载 PHP7 软件

我是Linux 编译安装的php7.1.33之后(lamp架构),网页可以解析HTML,但是访问.php出现下载文件的现象. 1.首先查看Apache模块是否有php7.ls /usr/local/apache/modules/libphp7.so 2.还可以前往httpd配置文件,查看是否有 modules/libphp7.so3.一般是configure PHP 缺少了一个 --with-apx2 .也有可能是make 的时候出错了.应该 make clean 之后再make.4.最后的解决

在Centos中yum安装和卸载软件的使用方法

在Centos中yum安装和卸载软件的使用方法安装方法安装一个软件时yum -y install httpd安装多个相类似的软件时yum -y install httpd*安装多个非类似软件时yum -y install httpd php php-gd mysql卸载一个软件时yum -y remove httpd卸载多个相类似的软件时yum -y remove httpd*卸载多个非类似软件时yum -y remove httpd php php-gd mysql 另外还有一个非常棒的用法假

在Centos中yum安装和卸载软件的使用方法(转)

在Centos中yum安装和卸载软件的使用方法 安装方法 安装一个软件时 yum -y install httpd 安装多个相类似的软件时 yum -y install httpd* 安装多个非类似软件时 yum -y install httpd php php-gd mysql 卸载一个软件时 yum -y remove httpd 卸载多个相类似的软件时 yum -y remove httpd* 卸载多个非类似软件时 yum -y remove httpd php php-gd mysql

CentOS系统下安装以及卸载mysql

CentOS7的yum源中默认好像是没有mysql的.为了解决这个问题,我们要先下载mysql的repo源. 1. 下载mysql的repo源 [[email protected] `]$ wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 2. 安装mysql-community-release-el7-5.noarch.rpm包 [[email protected] `]$sudo rpm -ivh mysq