美文网首页
centos 最小化安装

centos 最小化安装

作者: maxmaxmaxma | 来源:发表于2017-08-04 17:48 被阅读0次
  • 配置静态IP
  1. 查看网络
# ip addr
  1. 编辑网络
# vi /etc/sysconfig/network-scripts/ifcfg-eth0

BOOTPROTO=static
ONBOOT="yes"
IPADDR = "[在这里输入你的静态 IP]"
GATEWAY = "[输入你的默认网关]"
NETMASK="【子网掩码】"
DNS1 = "[你的DNS 1]"
DNS2 = "[你的DNS 2]"

# service network restart
  1. 更换yum源
# yum install wget
# cd /etc/yum.repo.d
# mv CentOS-Base.repo CentOS-Base.repo.bak
# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
# yum makecache
  1. 基础包安装
# yum groupinstall base -y
# yum install gcc gcc-c++ -y 
# yum install net-tools -y
# yum install psmisc -y  //centos7没有killall命令,要先安装
# yum install vim -y
# yum update -y

相关文章

网友评论

      本文标题:centos 最小化安装

      本文链接:https://www.haomeiwen.com/subject/fdqblxtx.html