使用yum源安装可以解决安装软件包的依赖关系
[root@www163 ~]# cat /etc/yum.repos.d/rhel7.repo
[rhel7] (仓库标识,可以随意写)
name=rhel7 (仓库名字,可以随意写)
baseurl=http://192.168.4.254/rhel7 (yum源的路径)
enabled=1 (是否导入红帽签名信息)
gpgcheck=0 (是否检测)
yum中常用命令
安装软件包
yum -y install 软件包名字
检查yum仓库
yum repolist
清除yum缓存
yum clean all
卸载软件包
yum -y remove 软件包名字
rpm 可以下载软件包,但不能自动解决依赖关系
rpm常用命令