在CentOS 5.1上安装VMware Server

最近有一台4核的主机,决定把它当成VMware Server,在上面不安装服务!

网络上大部分都没说清楚最小安装时要加装什么!

1 安装 CentOS 操作系统
CentOS 5.1 32-bit Server DVD 安装
Language Selection : Chinese(Traditional) 简体中文
键盘设定 : 美式英文
选择磁碟分割方式 : 自动分割磁碟(A)
网络设定 :
指定 IP/netmask
指定 Gateway / DNS
时区选择 : 亚洲/上海
设定root密码
取消勾选「Desktop - Gnome」,勾选「立即自订」
在套件选择的地方,取消选择「应用程式」内的「文字介面的网际网络」
在套件选择的地方,取消选择「基础系统」内的「拨号网络支援」

安装完成后退出 DVD, 然后重新启动进入 CentOS

1.1 确认 CentOS 安装完成
建立备援 root 帐号(Exp. misadm)
建立登入帐号 (Exp. jonathan)
网络可否正常运作 (ssh 到外部主机, 然后再 ssh 回来)
执行setup
设定Firewall,关闭防火牆及SELinux

1.2 更新 CentOS 版本作业
使用 root 身分登入主机
安装 yum 更新套件
使用 yum 更新到最新版本
重新启动电脑让新版的 kernel 生效
实际执行语法

yum -y update
sync
sync
sync
reboot

yum install -y kernel-devel gcc libXtst-devel libXrender-devel xinetd iptraf  sysstat net-snmp ntp
sync
sync
sync
reboot

#1.3 编辑snmpd.conf
vi /etc/snmp/snmpd.conf
#增加
view    systemview    included   .1.3.6.1.2.1.2
view    systemview    included   .1.3.6.1.2.1.2.2.1

#启动 snmpd 并设定开机可自动启动
service snmpd start
chkconfig snmpd on

vi /etc/ntp.conf
#编辑 ntp.conf

:
 :
 # --- OUR TIMESERVERS -----
 server  210.59.157.30
 server  tick.stdtime.gov.tw prefer
 server  mizbeaver.udel.edu prefer
 server  ntps1-0.cs.tu-berlin.de
 server  ntps1.pads.ufrj.br
 server  time1.one4vision.de
 server  watch.stdtime.gov.tw
 server  time.stdtime.gov.tw
 server  tock.stdtime.gov.tw
 server  clock.stdtime.gov.tw

server 192.43.244.18              # time.nist.gov (ACTS)
 server 192.5.41.40                # tick.usno.navy.mil

#第一次网络校时
ntpdate -u tick.stdtime.gov.tw

#启动 ntpd
service ntpd start
chkconfig ntpd on
ntpq -p

#1.4 安装与设定 webmin
wget
rpm -ivh webmin-1.410-1.noarch.rpm
#设定ssl

#1.5 VMware Server
cd /tmp
wget
rpm -ivh VMware-server-1.0.5-80187.i386.rpm

/usr/bin/vmware-config.pl
#过程中皆按 Enter 接受预设值
最后使用 port 902若遇到改port还是强制设定902比较好

9AWP0-Y0RDF-27M10-4R4U9(序号)
sync;sync;sync;reboot;

#VMware Server Web-based management interface
wget
tar zxf VMware-mui-1.0.5-80187.tar.gz
cd vmware-mui-distrib
./vmware-install.pl
sync;sync;sync;reboot;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyxxwf.html