oracle linux配置本地光盘yum源

  mkdir -p /mnt/cdrom/
  mount /dev/sr0 /mnt/cdrom
  [[email protected] yum.repos.d]# cat local.repo
  [Server]
  name=Server
  baseurl=file:///mnt/cdrom
  enabled=1
  gpgcheck=0

  验证yum

[[email protected] yum.repos.d]# yum repolist
Loaded plugins: langpacks, ulninfo
Server                                                                                                                                | 3.6 kB  00:00:00
(1/2): Server/group_gz                                                                                                                | 141 kB  00:00:00
(2/2): Server/primary_db                                                                                                              | 5.0 MB  00:00:00
repo id                                     repo name                                                                                                  status
Server                                      Server                                                                                                      5,210
ol7_UEKR5/x86_64                            Latest Unbreakable Enterprise Kernel Release 5 for Oracle Linux 7Server (x86_64)                              183
ol7_latest/x86_64                           Oracle Linux 7Server Latest (x86_64)                                                                       15,970
repolist: 21,363

  

原文地址:https://www.cnblogs.com/omsql/p/11965600.html

时间: 2024-11-05 17:29:42

oracle linux配置本地光盘yum源的相关文章

centos6配置本地光盘yum源、rhel7修改网卡名称为eth0

VMware安装好centos/rhel后要配置的几点(配置本地光盘yum源.修改网卡名称为eth0等) [[email protected] ~]# setenforce 0 [[email protected] ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config [[email protected] ~]# tar zcvf /root/redhat.repo.tgz /etc/yum.repos.d/

Linux配置本地网络YUM源

配置环境: 系统版本: [[email protected] ~]# cat /etc/issue Red Hat Enterprise Linux Server release 5.8 (Tikanga) Kernel \r on an \m 系统32位: [[email protected] ~]# getconf LONG_BIT 32 YUM源服务器,IP:192.168.2.1 YUM客户端,IP:192.168.2.2 一.配置本地YUM源服务器: 挂在光盘: [[email pro

本地光盘yum源的搭建

有时候由于网络等其他原因的限制,不能随时使用yum到网上去获取rpm包,这样我们可以配置本地光盘yum源. 下面简要介绍一下本地光盘yum源的搭建 1.挂载本地iso镜像文件mount /dev/sr0 /media/cdrom 2.修改yum源配置文件vim /etc/yum.repos.d/rhel-source.repo 修改内容如下[rhel-source]name=Red Hat Enterprise Linuxbaseurl=file:///media/cdrom      前两个/

linux:网络yum源和制作本地光盘yum源

linux:存放yum源的位置:/etc/yum.repos.d/,该目录下全是一些yum源 一.网络yum源: 如图:下面全部都是yum源,后缀是".repo"都是合法的yum源,默认的是启动的CentOS-Base.repo这个yum源(网络yum源) [[email protected] yum.repos.d]# ls -l total 28 -rw-r--r--. 1 root root 1664 Dec 9 2015 CentOS-Base.repo --- 网络yum源

Linux系统中搭建本地光盘yum源

搭建本地光盘yum源 第一步:放入CentOS安装光盘,并挂载光盘到指定位置:命令如下: [[email protected] ~]#mkdir /mnt/cdrom #创建cdrom目录,作为光盘的挂载点 [[email protected] ~]#mount -t iso9660 /dev/cdrom1 /mnt/cdrom/ mount: block device /dev/sr0 is write-protected mounting read-only #挂载光盘到/mnt/cdrom

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

基于虚拟机的centos6.5 搭建本地光盘yum源

在线yum安装必须要保持服务器能够连入网络并且他下载的还会比较慢因为地址大部分多是国外的下载站.另外yum在线下载的都是比较新的软件包,可能不是很稳定,那么使用yum的本地资源就是光盘里的RPM包,让本地光盘作为yum源,这种源的版本可能不是最新的但是相对比较稳定,这种方式一般在工作中比常用.下面就来介绍下光盘yum源安装. 第一步: 虚拟机以vmwareworkstations 为例安装centos6.5虚拟机 并设置连接镜像1 第二步:挂载光盘 [[email protected] ~]#m

linux配置centos的yum源本地仓库搭建

1.放置iso文件,并挂载iso文件,永久挂载,修改/etc/fstab参考:https://blog.csdn.net/qq_36119192/article/details/82222175#%E4%B8%80%EF%BC%9A%E9%85%8D%E7%BD%AE%E6%9C%AC%E5%9C%B0yum%E6%BA%90或者搜索:Linux配置yum源(本地源和网络源) - 谢公子的博客 2.到该目录/etc/yum.repos.d删除所有文件rm -rf *,并创建base.repo [

centos制作本地光盘yum源

centos将本地光盘做为yum源,方便解决依赖包问题: 1./etc/yum.repos.d目录下有两个文件:CentOS-Base.repo(联网yum安装).CentOS-Media.repo(本地yum源) vi   CentOS-Media.repo [c5-media] name=CentOS-$releasever - Media baseurl=file:///media/ 此处为挂载目录(挂载点) gpgcheck=1 #enabled=0 这个我注释掉了,不知道没有注释可以用