
实操(虚拟机安装):
下载VMware,然后按照如下教程安装虚拟机:
https://jingyan.baidu.com/article/c275f6ba07e269e33d756714.html
阿里云的下载已经失效,请前往官网下载地址下载。
https://wiki.centos.org/Download
http://vault.centos.org/6.8/isos/x86_64/
直接下载这个也可以
64bit
http://archive.kernel.org/centos-vault/6.8/isos/x86_64/CentOS-6.8-x86_64-bin-DVD1.iso
32bit
http://archive.kernel.org/centos-vault/6.8/isos/i386/CentOS-6.8-i386-bin-DVD1.iso
接下来配置网卡:
输入命令(首先要切换为root用户):
su root
sudo vim /etc/sysconfig/network-scripts/ifcfg-eth0
然后修改ONBOOT=yes
然后输入命令:
ifconfig
打开网站:http://mirrors.aliyun.com/help/centos
按照如下的步骤即可配置好软件源(软件源是Linux系统免费的应用程序安装仓库,很多的应用软件都会这收录到这个仓库里面):
实操(这里我安装的是centos-7,建议是centos-6):
首先查发行版本信息:
/etc/*-release file
然后执行备份:
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
接下来下载:
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
最后执行:
yum makecache
清理缓存。