配置本地和网络yum源

一、配置本地yum源

1.检查自己是否已经安装yum

[[email protected] ~]# rpm -qa | grep yum

yum-updatesd-0.9-2.el5

yum-security-1.1.16-13.el5

yum-metadata-parser-1.1.2-3.el5

yum-3.2.22-20.el5

yum-rhn-plugin-0.5.4-13.el5

2.把安装光盘挂在到/mnt下

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

mount: block device /dev/cdrom is write-protected, mounting read-only

2.修改yum源配置文件 vim /etc/yum.repos.d/rhel-debuginfo.repo

[rhel-debuginfo]

name=Redhat

baseurl=file:///mnt/cdrom/Server

enabled=1       (1表示开启,0表示关闭)

gpgcheck=0

用yum clean all 清空一下

二、配置网络yum源

修改yum源配置文件 vim /etc/yum.repos.d/rhel-debuginfo.repo

[rhel-debuginfo]

name=Redhat

baseurl=http://mirrors.aliyun.com/centos/5/os/i386/ (自己找的yum源地址)

enabled=1

gpgcheck=0

时间: 2024-10-14 05:26:00

配置本地和网络yum源的相关文章

配置本地光盘为yum源

挂载cd-rom mount /dev/cdrom /mnt http://javaarm.com/faces/display.xhtml?tid=3520 关闭selinux vi /etc/sysconfig/selinux SELINUX=disabled 关闭防火墙 chkconfig --list  |grep iptables chkconfig --level 12345 iptables off 关闭防火墙服务 service iptables stop service ipta

使用sohu的网络yum源操作步骤

一,下载yum的repo文件:    yum -y install wget cd /etc/yum.repos.d/ wget http://mirrors.sohu.com/help/CentOS-Base-sohu.repo 二,将其他的配置文件改名设置备份   mv CentOS-Base.repo CentOS-Base.repo.bak 三,测试yum源可用性   yum list | wc -l 显示5313个包即为配置正确 配置sohu的网络yum源常见报错: 一,路径错误: [

CentOS 6.6下配置本地yum源与网络yum源

一.本地yum源 1.系统默认已经安装了可使用yum的软件包,所以可以直接配置: [[email protected] ~]# cd /etc/yum.repos.d/                         yum源配置文件放置目录 [[email protected] yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.bak    先将网络yum源        配置文件更名(让其失效) [[email protected] yum

CentOS 6.5下本地yum源与网络yum源的配置使用

一.本地yum源 1.系统默认已经安装了可使用yum的软件包,所以可以直接配置: [[email protected] ~]# cd /etc/yum.repos.d/                         yum源配置文件放置目录 [[email protected] yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.bak    先将网络yum源        配置文件更名(让其失效) [[email protected] yum

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

RHEL配置网络yum源

RHEL6.5系统配置网络Yum源概述 1.配置本地yum源: 将光盘镜像文件挂载到/mnt目录下#mount /dev/cdrom /mnt; 修改/etc/yum.repo.d/目录下的配置文件,删除或重命名其他的.repo文件,创建新的local.repo文件,内容如下: [local] name=local DVD baseurl=file:///mnt enabled=1 gpgcheck=0 2.利用本地yum源安装wget下载工具: #yum install wget -y 3.利

Linux 本地yum源搭建和网络yum源搭建

一.本地yum源搭建 首先挂载上光盘 [[email protected] /]# mount /dev/cdrom /media/cdrom/ 系统默认已经安装了可使用yum的软件包,所以可以直接配置: [[email protected] ~]# cd /etc/yum.repos.d/                        yum源配置文件放置目录 [[email protected] yum.repos.d]# mv CentOS-Base.repo CentOS-Base.re

redhat配置centos网络yum源

方案一: 配置网络yum源rpm -ivh vsftpd-2.2.2-6.el6_0.1.x86_64service vsftpd restartchkconfig --level 35 vsftpd oncd /var/ftp/pub/mkdir yum把上面的挂载点改成/var/ftp/pub/yumvim /etc/yum.repos.d/rhel-source.repo[server]name=serverbaserul=ftp://pub/yum/Server/  #(注意要挂载光驱)

配置网络yum源

有的时候服务器需要下载一些软件,是本地yum源没有的,这时候需要配置网络yum源 #cd  /etc/yum.repos.d/ 把这个目录下的配置文件备份,改名:或者是把文件里边的enabled=1的改为enabled=0: # wget -O /etc/yum.repos.d/CentOS-Base.repo   http://mirrors.aliyun.com/repo/Centos-6.repo # sed -i  's/$releasever/6/g' /etc/yum.repos.d