yum专题

#安装yum
wget http://yum.baseurl.org/download/3.2/yum-3.2.28.tar.gz
tar xvf yum-3.2.28.tar.gz  
cd yum-3.2.28  
yummain.py install yum  
#如果结果提示错误: CRITICAL:yum.cli:Config Error: Error accessing file for config file:///etc/可能是原来是缺少配置文件。在etc目录下面新建yum.conf文件,然后再次运行 yummain.py install yum,顺利完成安装。

#更新系统。
yum check-update  
yum update  
yum clean all  
#yum更新版本
yum -y update nodejs #升级所有包同时也升级软件和系统内核;
yum -y upgrade nodejs#只升级所有包,不升级软件和系统内核。
yum -y update#需要更新内核;
yum -y upgrade#更新系统时,软件和内核保持原样。

#yum更换源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo#下载aliyun的repo,先切换到本地的 /etc/yum.repos.d/文件夹,然后进行阿里源镜像的下载
yum clean all#更新yum缓存
yum makecache
yum install -y git#测试安装

#yum安装软件
yum install nodejs -y

#yum卸载软件
yum list installed#查看已安装
yum remove nodejs #卸载

#yum查询信息
yum info nodejs

#yum搜索软件
yum search nodejs

#yum显示软件包依赖关系
yum deplist nodejs

你可能感兴趣的:(运维)