CentOS-6.0-x86_64-minimal(Centos 6.0-64bit最小化安装版)
CentOS-6.0-x86_64-minimal的前期准备工作(系统的安装这里就略去了..)
因为mini版很多工具包没有,所以在以后安装各类软件包的时候,会出现麻 烦。因此在这里会列出几个常见的安装包。
(vim-enhanced,gcc,gcc-c++,make,wget,traceroute,sysstat,pciutils)
上述包说明
Vim:可参看说明 http://zh.wikipedia.org/wiki/Vim
Gcc gcc-c++:可参看说明 http://zh.wikipedia.org/wiki/Gcc
Make:可参看说明 http://zh.wikipedia.org/wiki/Make
Wget:可参看说明 http://zh.wikipedia.org/wiki/Wget
Traceroute:可参看说明 http://zh.wikipedia.org/wiki/Traceroute
Sysstat:可参看说明 http://www.linuxsir.org/main/?q=node/211
Pciutils:可参看 http://lfs.linuxsir.org/htdocs/blfscvs/general/pciutils.html (wget,traceroute,sysstat,pciutils这3个都是之后用来测试或者查看相关系统信息使用的,暂时可以不用安装)
yum install vim-enhanced gcc gcc-c++ make (wget ,traceroute,sysstat ,pciutils-可选)
如果没有源,那么可以自己做源
`源`制作(本地源) ,如下图所示
如下代码可以方便复制使用(本人提倡自己动手敲代码......^_^)
1.mkdir -p /mnt/yum
2.mount /dev/cdrom /mnt/yum
3.touch /etc/yum.repos.d/localhost.repo
4.vim /etc/yum.repos.d/localhost.repo
配置文件添加如下内容:
[base]
name=localhost
baseurl=file://localhost/path
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
保存退出
注:系统自带的源配置文件可以mv到一个备份的文件夹。
5.yum clear all
6.yum list