1、虚拟机的创建。

   

2、开启电源,安装系统。


Install or upgrade an existing system  安装或升级现有的系统

install system with basic video driver 安装过程中采用 基本的显卡驱动

Rescue installed system                进入系统修复模式

Boot from local drive                  退出安装从硬盘启动

Memory test                            内存检测

分区方案:

/boot  放在最前面512M

/      根分区61440M

swap   交换分区,内存小于2G是内存的2倍,内存大于2G,填写2G

3、设置网络。



[root@bogon ~]# vi  /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0

HWADDR=00:0C:29:69:1A:29

TYPE=Ethernet

UUID=750a4970-a876-4d2d-b129-c094bc237ca8

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=dhcp


配置文件注释:

BOOTPROTO=static            #启用静态IP地址

ONBOOT=yes                  #开启自动启用网络连接

IPADDR=192.168.21.129       #设置IP地址

NETMASK=255.255.255.0       #设置子网掩码

GATEWAY=192.168.21.2        #设置网关

DNS1=8.8.8.8                #设置主DNS

DNS2=8.8.4.4                #设置备DNS

IPV6INIT=no                 #禁止IPV6


service ip6tables stop      #停止IPV6服务

chkconfig ip6tables off     #禁止IPV6开机启动

service yum-updatesd stop   #关闭系统自动更新

chkconfig yum-updatesd off  #禁止开启启动

service network restart     #重启网络连接

ifconfig 



4、设置主机名。



[root@bogon ~]# hostname "CentOS64_DB"

[root@bogon ~]# vi /etc/sysconfig/network

NETWORKING=yes

#HOSTNAME=localhost.localdomain

HOSTNAME=CentOS64_DB

[root@bogon ~]# vi /etc/hosts

127.0.0.1   CentOS64_DB localhost

[root@bogon ~]# reboot


5、配置YUM源。



由于最小化安装默认是没有wget命令的,所以为了方便后期安装软件,我们可以先配置163yum源。

下载文件:http://mirrors.163.com/.help/CentOS6-Base-163.repo

上传文件:CentOS6-Base-163.repo   #上传软件可以通过WinSCP软件上传,本人放在root目录。


[root@CentOS64_DB ~]# cd /etc/yum.repos.d/

[root@CentOS64_DB yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo_Bak

[root@CentOS64_DB yum.repos.d]# mv /root/CentOS6-Base-163.repo /etc/yum.repos.d/

[root@CentOS64_DB yum.repos.d]# yum clean all

Loaded plugins: fastestmirror

Cleaning repos: base extras updates

Cleaning up Everything

[root@CentOS64_DB yum.repos.d]# yum makecache

Loaded plugins: fastestmirror

Determining fastest mirrors

base                                                             | 3.7 kB     00:00     

base/group_gz                                                    | 216 kB     00:00     

base/filelists_db                                                | 6.1 MB     00:18     

base/primary_db                                                  | 4.6 MB     00:13     

base/other_db                                                    | 2.8 MB     00:06     

extras                                                           | 3.4 kB     00:00     

extras/filelists_db                                              |  31 kB     00:00     

extras/prestodelta                                               |  492 B     00:00     

extras/primary_db                                                |  29 kB     00:00     

extras/other_db                                                  |  35 kB     00:00     

updates                                                          | 3.4 kB     00:00     

updates/filelists_db                                             | 646 kB     00:02     

updates/prestodelta                                              |  72 kB     00:00     

updates/primary_db                                               | 852 kB     00:02     

updates/other_db                                                 | 6.4 MB     00:07     

Metadata Cache Created

[root@CentOS64_DB yum.repos.d]#  yum install yum-fastestmirror


wget命令的安装包:

make-3.81-20.el6.x86_64.rpm                                                        

openssl-1.0.1e-30.el6_6.4.x86_64.rpm                                                  

wget-1.12-5.el6_6.1.x86_64.rpm

其他安装地址:http://www.jb51.net/os/85895.html



Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐