位置: 编程技术 - 正文
推荐整理分享Linux yum安装过程图文详解(linux安装yum命令步骤),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:linux如何使用yum安装,linux安装yum命令步骤,linux怎么用yum安装,linux安装yum命令步骤,linux 怎么安装yum,linux yum 安装,linux yum 安装,linuxyum怎么安装,内容如对您有帮助,希望把文章链接给更多的朋友!
第一种方法:(推荐)第一步:新建一个文件夹,并把光盘内的所有文件复制到这个文件夹里:[root@localhost ~]# mkdir /yum[root@localhost ~]# cp -rvf /misc/cd/* /yum第二步:备份repodata文件。因为有四个文件夹里都有这个文件,所以都要备份。[root@localhost ~]# mv /yum/Server/repodata /yum/Server/repodata.bak[root@localhost ~]# mv /yum/VT/repodata /yum/VT/repodata.bak[root@localhost ~]# mv /yum/Cluster/repodata /yum/Cluster/repodata.bak[root@localhost ~]# mv /yum/ClusterStorage/repodata /yum/ClusterStorage/repodata.bak第三步:安装工具包:[root@localhost ~]# rpm -ivh /yum/Server/createrepo-0.4.-3.el5.noarch.rpm第四步:生成仓库数据库:[root@localhost ~]# createrepo -g /yum/Server/repodata.bak/comps-rhel5-server-core.xml /yum/Server/[root@localhost ~]# createrepo -g /yum/VT/repodata.bak/comps-rhel5-vt.xml /yum/VT/[root@localhost ~]# createrepo -g /yum/Cluster/repodata.bak/ /yum/Cluster[root@localhost ~]# createrepo -g /yum/ClusterStorage/repodata.bak/comps-rhel5-cluster-st.xml /yum/ClusterStorage/第五步:查看仓库数据文件:[root@localhost ~]# ls /yum/Server/repodata/comps-rhel5-server-core.xml //这个文件软件包组的分类。filelists.xml.gz other.xml.gz primary.xml.gz //这三个文件为软件包列表文件。repomd.xml //这个文件为MD5校验信息。在/yum/VT /yum/Cluster /yum/ClusterStorage下面都有这几个文件,作用和这一样。如果想更新软件包,只需把下载完的软件包放在Server或者其他三个目录里,再使用第四步重新生成数据库文件即可。第六步:客户端配置:主要修改下面红色的部分:[root@localhost ~]# cp /etc/yum.repos.d/rhel-debuginfo.repo /etc/yum.repos.d/chenbin.repo[root@localhost ~]# vi /etc/yum.repos.d/chenbin.repo[rhel-Server]name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= ~]# yum clean all安装一个软件试试:[root@localhost ~]# rpm -ivh /yum/Server/httpd-2.2.3-.el5.i.rpm warning: /yum/Server/httpd-2.2.3-.el5.i.rpm: Header V3 DSA signature: NOKEY, key ID error: Failed dependencies: libapr-1.so.0 is needed by httpd-2.2.3-.el5.i libaprutil-1.so.0 is needed by httpd-2.2.3-.el5.i因为依赖关系,所以不能安装。用如下命令安装:[root@localhost ~]# yum install /yum/Server/httpd-2.2.3-.el5.i.rpm系统会自动安装完成。Yum?载如下:[root@localhost ~]# yum remove httpd。1.2第二种方法:第一步:同上,创建一个新文件夹,并把光盘的内容全部复制到该文件夹内:[root@localhost ~]# mkdir /yum[root@localhost ~]# cp -rvf /misc/cd/* /yum第二步:安装工具包:[root@localhost ~]# rpm -ivh /yum/Server/createrepo-0.4.-3.el5.noarch.rpm第三步:生成仓库数据库:[root@localhost ~]# cd /yum[root@localhost yum]# createrepo . //注意后面的.第四步:查看文件:文件作用同上:[root@localhost yum]# ls /yum/repodata/filelists.xml.gz other.xml.gz primary.xml.gz repomd.xml第五步:客户端配置:[root@localhost ~]# cp /etc/yum.repos.d/rhel-debuginfo.repo /etc/yum.repos.d/chenbin.repo[root@localhost ~]# vi /etc/yum.repos.d/chenbin.repo[rhel-chenbin]name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= ~]# yum clean all至此,yum安装完成,但使用这种方法安装后在应用程序-添加删除软件的列表是空的,但使用yum安装软件是可以的。[root@localhost ~]# yum install /yum/Server/httpd-2.2.3-.el5.i.rpm[root@localhost ~]# yum remove httpd1.3第三种方法:首先把光盘放入光驱内:然后复制配置文件:[root@localhost ~]# cp /etc/yum.repos.d/rhel-debuginfo.repo /etc/yum.repos.d/chenbin.repo最后编辑配置文件:[root@localhost ~]# vi /etc/yum.repos.d/chenbin.repo[rhel-Server]name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= Hat Enterprise Linux $releasever - $basearch - Debugbaseurl= ~]# yum clean all这种方法安装后在应用程序-添加删除软件里也有列表。同样可以使用yum安装?载[root@localhost ~]# yum install /misc/cd/Server/httpd-2.2.3-.el5.i.rpm[root@localhost ~]# yum remove httpd如果把光盘拿出后,在应用程序-添加删除软件就没有列表了,只要放入光盘就有。1.4总结:YUM常用命令:1.安装软件包:yum install packageyum localinstall package 从本机目录安装软件包yum groupinstall group 安装某个组件的全部软件包2.更新软件包:yum update packageyum check-update 列出所有可更新的软件包yum list updates mysql* 查找mysql的更新yum update 更新所有可更新的软件包yum update mysql* 更新所有mysql的软件包yum groupupdate group 更新某个组件的所有软件包yum list 列出所有已安装和仓库中可用的软件包yum list available 列出仓库中所有可用的软件包yum list updates 列出仓库中比当前系统更新的软件包yum list installed 列出已安装的软件包yum list recent 列出新加入仓库的软件包yum info 查询软件包信息 3.删除软件包:yum remove packageyum groupremove group 删除某个组件的全部软件包4.清除软件包yum clean packages 清除遗留在缓存里的包文件yum clean metadata 清除遗留在缓存里的元数据yum clean headers 清除遗留在缓存里的头文件yum clean all 清除包文件,元数据,头文件5.搜索软件包:yum search packageyum info package 查找一个软件包的信息yum list package 列出包含指定信息的软件包yum list installed 列出已安装的软件包yum list extras 列出不是通过软件仓库安装的软件包yum list *ttp* 列出标题包含ttp的软件包yum list updates 列出可以更新的软件包6.查找特定文件是由什么软件包提供的:yum whatprovides filename例子:yum whatprovides httpd.conf可用选项–disalberepo=lib 禁用某个软件仓库–enalberepo=lib 启用某个软件仓库-C 禁用使用本机缓存的元数据例子:yum –disalberepo=livna|–enalberepo=livna install mplayeryum -C info httpdlinux yum使用管理详细使用 yum是yellowdogupdatermodified的缩写。yellowdog是一个Linux的distribution,RH将这种升级技术用到自己的distribution形成了现在的yum(原理和apt类似,但apt是编译代码
linux下提示bash:command not found 如果新装的系统,运行一些很正常的诸如:shutdown,fdisk的命令时,悍然提示:bash:commandnotfound。那么首先就要考虑root的$PATH里是否已经包含了这些环境
LNMP一键安装包常见错误及解决方法(不定期更新) 1、开始安装LNMP时,前面提示error:packagehttpdisnotinstalled,error:packagephpisnotinstalled,error:packagemysqlisnotinstalled这个不是错误信息,这个是坚持系统环境,请不必
标签: linux安装yum命令步骤
本文链接地址:https://www.jiuchutong.com/biancheng/364864.html 转载请保留说明!上一篇:Linux(centos)系统各个目录的作用详解 推荐(cent linux)
友情链接: 武汉网站建设