虚拟机配置centos7系统,不做叙述。默认centos7 迷你版缺少很多东西,vim,网卡开启。。。
1. 开启开机启动网卡:
修改配置文件:vi /etc/sysconfig/network-scripts/ifcfg-ens33
将ONBOOT参数修改为yes。
重启服务:systemctl restart network.service
2. 安装wget:yum -y install wget
3. 更换阿里云yum源:
备份之前的yum源:mv /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.aliyun.com/repo/Centos-7.repo
生成缓存:yum makecache
4. 安装常用的工具:
vim:yum -y install vim (编辑工具,大家都知道)
htop:yum -y install epel-release (首先安装epel) yum -y install htop (系统监控工具)
ifconfig: yum -y install net-tools (查询ip)
dig,nslookup,host: yum -y install bind-utils (DNS查询指令)
网友评论