Vmware12 CentOS7 mini Config (最简版CentOS7配置)
一、网络配置
输入:ip addr
,显示网络并未连接
查看“虚拟机->设置->网络适配器”选择连接模式为“NAT模式”
终端打开vi /etc/sysconfig/network-script/ifcfg-ens33
修改ONBOOT=yes
保存退出 esc
:wq
输入service network restart
重启网络服务,
再次检查ip,以及ping www.baidu.com
其中"192.168.106.130"为此CentOS虚拟机IP地址,可用ssh工具远程连接
二、CentOS7 mirror source change to Ali(CentOS7镜像源更换至阿里)
备份源文件 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
CentOS7阿里云镜像源下载(CentOS6源地址 http://mirrors.aliyun.com/repo/Centos-6.repo)
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清理与重载缓存 yum clean all && yum makecache
yum源状态查看 yum repolist
三、Linux common tool install(Linux常用命令工具安装)
yum install kernel-devel
yum -y update
yum install vim //编辑工具安装
yum install wget //下载工具
yum inatall perl //后面安装MVwareTools必装软件
yum install net-tools //ifconfig命令,VMwareTools需要
其他常用用具(c++)
yum install gcc //GNU工程编译器
yum install cpp
yum install gcc-c++
yum install make //makefile
yum install gdb //调试工具
yum groupinstall "Development Tools"
四、VMware tool install 虚拟机工具安装
[root@localhost vmware-tools-distrib]# ./vmware-install.pl
-bash: ./vmware-install.pl: /usr/bin/perl: bad interpreter: No such file or directory
perl 未安装