note centos初始化

yy9knsg發表於2024-11-14

網路卡編輯

/etc/sysconfig/network-scripts/ 目錄下

BOOTPROTO="static"  # 也就是將dhcp改為static
ONBOOT=“yes”  # 將網路卡設定為開機啟用
IPADDR=192.168.12.230 #靜態IP  
GATEWAY=192.168.12.1 #預設閘道器  
NETMASK=255.255.255.0 #子網掩碼  
DNS1=192.168.12.1 #DNS 配置  
DNS2=8.8.8.8        #谷歌地址

service network restart

更新yum源

備份原有的 YUM 原始檔

sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

下載國內源的 YUM 配置檔案

 阿里雲源
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
 清華大學源
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.tuna.tsinghua.edu.cn/repo/Centos-7.repo
 網易源
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
中科大源
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.ustc.edu.cn/centos/7/os/x86_64/

清理 YUM 快取

sudo yum clean all
sudo yum makecache

配置dns

修改 /etc/resolv.conf 檔案

vi /etc/resolv.conf

nameserver 8.8.8.8
nameserver 8.8.4.4

相關文章