Centos6.5使用光盘作为本地的yum源

主要是用于无法连接外网的CentOS6.5服务器

mkdir /mnt/cdrom

挂载光驱ISO文件

[[email protected]~]# mount /dev/cdrom /mnt/cdrom/

修改默认的源,修改前请先备份文件。

[[email protected] ~]# cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

编辑yum文件

[[email protected] ~]# vim /etc/yum.repos.d/CentOS-Base.repo

[base]

name=CentOS-$releasver - Base

baseurl=file:///mnt/cdrom/

gpgcheck=1

enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

#released updates

[updates]

name=CentOS-$releasver - Updates

baseurl=file:///mnt/cdrom/

gpgcheck=1

enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

...

[[email protected] ~]# yum clean all (清除缓存)

[[email protected] ~]# yum makecache (建立新缓存)

就可以了的说

时间: 2024-11-01 10:53:28

Centos6.5使用光盘作为本地的yum源的相关文章

挂载系统光盘作为本地的yum源

问题:不小心删除了lvm这个包,,郁闷,系统启动失败,怎么办? 思路:没有本地yum源服务器的话,通过挂载DVD作为本地的yum源来安装lvm,然后重启即可. 系统启动时,进入修复模式,重新挂载/分区: # mount -o remount,rw / 挂载dvd到/media目录下 # mount /dev/scd0 /media mount: block device /dev/sr0 is write-protected, mounting read-only 建立一个repo文件: # c

RHEL 7.0 本地配置yum源

RHEL 7.0 本地配置yum源  yum简介  yum = Yellow dog Updater, Modified 主要功能是更方便的添加/删除/更新RPM包. 它能自动解决包的倚赖性问题. 它能便于管理大量系统的更新问题 当前linux版本 rhel7.0 前提mount DVD光盘到/mnt   因为配置时候路径名里面不能有空格,否则不能识别 首先设置IP地址.网关DNS 说明:RHEL 7.0默认安装好之后是没有自动开启网络连接的! cd  /etc/sysconfig/networ

24. 文件系统——制作本地的yum源

之前使用的yum仓库,是直接将baseurl设置为官方镜像,或者是安装光盘.本节内容将介绍如何将互联网上下载到本地的rpm包制作成本地的yum源.定制yum源的命令是 createrepo: [[email protected] ~]# createrepo -bash: createrepo: command not found # 该命令尚未安装,可以使用yum安装 [[email protected] ~]# yum -y install createrepo Loaded plugins

CentOS 6.* 配置本地网络 yum源

CentOS 6.* 配置本地网络yum源 一台服务时只需要配一个本地的yum源即可:当需要配置多台服务器时,只需要配置1到2台vsftpd的yum源,其它服务器通过ftp连接yum源: 1 基于本地文件的yum源 1.1 下载镜像源 wget -b https://mirrors.aliyun.com/centos/6.10/isos/x86_64/CentOS-6.10-x86_64-bin-DVD1.iso tail -100f wget-log 1.2 挂载iso镜像文件 ll /mnt

重建光盘包中的yum源

重建光盘包中的yum源 #!/bin/sh for d in Cluster ClusterStorage Server VT do # 创建备份目录并备份软件包群组(Package Group)的定义信息 mkdir -p ~/backup/${d}/ cp ${d}/repodata/comps-rhel5-*.xml ~/backup/${d}/ # 使用备份的软件包群组定义信息重建仓库 rm -rf ${d}/repodata/ cd ${d} createrepo -g ~/backu

CentOS6搭建本地局域网YUM源

环境: 操作系统:CentOS6.5 64位 内网IP:192.168.20.210 操作步骤: # 1.先挂载CentOS-6.5-x86_64-bin-DVD1.iso mount -o loop -t iso9660 /dev/cdrom /mnt/ rpm -Uvh /mnt/Packages/createrepo-0.9.9-18.el6.noarch.rpm  mkdir -p /data/www/centos/6/x86_64/ \cp -r /mnt/Packages/ /dat

本地搭建yum源方法【二】

1. 搭建本地光盘YUM源 [[email protected] ~]# mkdir /mnt/cdrom/  ------>创建光盘挂载目录 [[email protected] ~]# mount /dev/cdrom /mnt/cdrom/  -------->挂在光盘 [[email protected] ~]# cd /etc/yum.repos.d/    -------->切换到YUM配置目录 [[email protected] yum.repos.d]# tar czf

VM中CentOS7本地配置yum源方法

因为虚拟机中安装CentOS7未联网,所以通过本地配置yun源来实现安装操作. 一.通过光盘当做本地yum仓库 1.挂载当前光盘至某目录 ]#mount /dev/cdrom  /mnt 或者# mount -r -t iso9660 /dev/cdrom /media/cdrom 2.创建配置文件 首先将以前的配置文件全都移至新建目录 ]#cd  /etc/yum.repos.d ]#mkdir repodir ]#mv CentOS* repodir 新建一个配置文件: ]#vim loca

本地局域网yum源搭建-centos/redhat

环境-centos6.7  [本机yum搭建提前备好,不做介绍] [[email protected] ~]# cat /etc/redhat-release CentOS release 6.7 (Final) 本地yum源的搭建一般有两种形式,http和ftp,这里我们选择使用http方式搭建 [[email protected] ~]# yum install -y createrepo httpd [[email protected] ~]# mkdir -p /yum/centos6.