yum-程序包管理器前端工具

一、要想使用yum先要指定yum源

  /etc/yum.com

  /etc/yum.repos.d/*repo

一、yum的使用

yum [option] command  包名

  option

     -y:

  command

    install :安装

    reinstall:重新安装

    check-update:检测可升级的包

    update:升级

    repolist:列出所有可用yum源

    clean

    list:列出所有可使用的包

      list installed:只列出已安装的包

      list  available :列出可用的,未安装的包

    info:显示包的描述信息

    grouplist:列出所有包组

    groupinfo:

    groupinstall :

    remove :卸载(注意这里会卸载依赖包)

    proovides  文件路径:通过文件查看由哪个包提供

三、不同版本系统,开发用到的包组不同

四、yum配置文件中的宏

1.releasever:程序的版本

2.arch:系统架构

3.basearch:系统基础架构比如32位还是64位。

4YUM0-9:系统中定义的环境变量,

五、编译安装软件

1.解压包

2.执行检查

  ./configure

3.编译

  make

4.安装

  make install

configure 功能

  1.指定安装路径

    --prefic=/payh

  2.指定配置文件路径

    --sysconfidir=/path

  3.指定启用/禁用功能

  4.指定所依赖的功能程序

    --with-function

    --

相关推荐