Think before you speak, read before you think.

yum使用方法

将服务器上的软件包信息在本地缓存,提高搜索和安装软件的速度

yum makecache

列出所有可更新的软件清单

yum check-update

安装所有更新软件

yum update httpd

安装指定的软件

yum install httpd

仅更新指定的软件

yum update

列出可安裝的软件清单

yum list

列出现有的repo

yum repolist

列出已经安装的软件清单

yum list installed

列出httpd安装信息

yum list httpd

使用yum删除软件

yum remove httpd

重置yum源

yum clean all

列出所有已安装但不在Yum Repository内的软件包

yum list extras

执行多条yum命令时可以使用yum shell开启shell,然后运行run执行,如

# yum shell
> remove mysql mysql-libs mysql-devel mysql-server
> install mariadb mariadb-libs mariadb-devel mariadb-server
> run
^D

ec2 AMI上安装 nodejs

yum install nodejs npm --enablerepo=epel

使用阿里云 CentOS7

# centos7
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *