1. 程式人生 > >centos初始化配置工作

centos初始化配置工作

centos 配置網絡卡

  1. 進入網絡卡資料夾
    cd /etc/sysconfig/network-scripts
    我的網絡卡資訊
  2. 檢視網絡卡名稱,我這裡網絡卡名稱是 ifcfg-ens33
  3. vim ifcfg-ens33 編輯該網絡卡
  4. BOOTPROTO=DHCP改為BOOTPROTO=static
  5. ONBOOT=no改為ONBOOT=yes
  6. 增加IP地址IPADDR=192.168.1.80
  7. 增加子網掩碼NETMASK=255.255.255.0
  8. 增加閘道器GATEWAY=192.168.1.1
  9. 增加DNSDNS1=114.114.114.114
  10. 也可再增加一個DNSDNS2=8.8.8.8
  11. 配置如圖我的網絡卡配置

centos 配置yum源

一條命令完成yum源配置
  • cp -r /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup && wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo && yum clean all && yum makecache
也可使用以下方式逐步配置yum源
  1. 訪問163域名配置yum源
    http://mirrors.163.com/.help/centos.html
  2. 首先備份 /etc/yum.repos.d/CentOS-Base.repo
    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
  3. 下載對應版本repo檔案, 放入/etc/yum.repos.d/(操作前請做好相應備份)
  4. 執行以下命令生成快取
    yum clean all
    yum makecache
流程如圖:

在這裡插入圖片描述