CentOS 7 开局配置

  1. 开局配置记录

vmware虚拟机

开局配置记录

  1. 网络配置
1. 配置网卡,设置为桥接模式, 配置和物理机同一网段的一个IP地址
vi /etc/sysconfig/network-scripts/ifcfg-ens33

BOOTPROTO=static ONBOOT=yes IPADDR=<ip> NETMASK=<mask> GATEWAY=<gateway>
2. 关闭NetworkManager systemctl stop NetworkManager systemctl disable NetworkManager
3. 重启network服务 systemctl restart network
4. 查看IP和路由

ip route
  1. 安装ssh、wget
yum install -y openssh-server wget

# 启动ssh服务 systemctl enable --now sshd
  1. 更换国内源,并进行更新cache
# 备份源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak

# 下载阿里源 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
# 更新缓存 yum clean all yum makecache
  1. 安装一些常用软件
yum install -y vim net-tools dnf

转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 365433079@qq.com