Linux Centos 安装组件
一时半会儿想不到什么好的词来翻译group,所以暂时用组件,反正意思是指一组组件包构成逻辑上,抽象意义上的组件,比如说开发组件,web server组件。
我们在通常配置一个环境的时候,都是一个个软件包这样的安装,比如Development,我们先安装gcc,然后再安装make,nasm等等,但是如果使用组件安装包方式,那么就非常方便。例如我们要安装Development,那么就可以使用
$ sudo yum groupinstall -y "Development tools"
那么你的系统到底有哪些组件安装包可供你使用呢?可以使用:
$ sudo yum grouplist
输出如下:
Available environment groups:
Minimal Install
Infrastructure Server
File and Print Server
Basic Web Server
Virtualization Host
Server with GUI
Available Groups:
Additional Development
Backup Client
Backup Server
Base
CIFS file server
Compatibility libraries
Console internet tools
Debugging Tools
Desktop
Desktop Debugging and Performance Tools
Desktop Platform
Desktop Platform Development
Development tools
Dial-up Networking Support
Directory Client
Directory Server
E-mail server
Eclipse
Educational Software
Electronic Lab
Emacs
。。。。。
我们经常用到的有:
"Development tools"
"Web Server"
"MySQL Database client"
"MySQL Database server"
"PHP Support"
如果想知道组件安装包中包含哪些软件,使用
$ sudo yum groupinfo "组件名称"
例如我们想知道 Development tools,
$ sudo yum groupinfo "Development tools"
如何安装
如何安装我们已经说过,使用groupinstall
后面跟组件的名称。需要说明的是,组件的名称不区分大小写,并且可以部分匹配,例如 "Development tools",我们可以只写Development
$ sudo yum groupinstall -y "development"
版权所有,禁止转载. 如需转载,请先征得博主的同意,并且表明文章出处,否则按侵权处理.