码迷,mamicode.com
首页 > 系统相关 > 详细

Linux yum源的安装 及 压缩

时间:2017-11-24 15:00:54      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:yum源   不能   压缩   pos   定义   col   解压   rom   images   

首先配置 yum源

1、挂载DVD光盘到/mnt   因为配置时候路径名里面不能有空格,否则不能识别  [root@ mnt]# mount /dev/cdrom /mnt  

 

2、在目录/etc/yum.repos.d/创建文件文件名.repo 

3、配置本地yum源

cd /etc/yum.repos.d/   #进入yum配置目录 

touch  rhel7.repo   #建立yum配置文件 

vim  rhel7.repo   #编辑配置文件,添加以下内容 

[rhel-yum]

name=rhel7   #自定义名称 

baseurl=file:///mnt#本地光盘挂载路径 

enabled=1   #启用yum源,0为不启用,1为启用 

gpgcheck=0  #检查GPG-KEY,0为不检查,1为检查 

:wq! #保存退出 

技术分享图片

 

4、、测试使用yum命令自动安装软件

yum clean all   #清除yum缓存 

yum makecache  #缓存本地yum源中的软件包信息

 

 

 

然后安装unzip Zip

 

mount /dev/cdrom /mnt

ls /mnt/ 查看是否挂载上

yum -y install  zip

 yum -y install  unzip

 

 

压缩

zip x.zip 原文件

zip -r  递归压缩

 

解压缩

unzip x.zip

Linux yum源的安装 及 压缩

标签:yum源   不能   压缩   pos   定义   col   解压   rom   images   

原文地址:http://www.cnblogs.com/dongweichang/p/7889109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!