LinuxIntegration Services Version 2.1支持的guest的操作系统(红字部分是支持的操作系统)
SUSELinux Enterprise Server 10 SP3 x86 and x64 (up to 4 vCPU)
Note
SUSELinux Enterprise Server 10 SP2 is no longer supported by Novell as ofApril 12, 2010. Novell recommends that users migrate to SUSE LinuxEnterprise Server 10 SP3.
SUSELinux Enterprise Server 11 x86 and x64 (up to 4 vCPU)
Note
Usersof SUSE Linux Enterprise Server 11 SP1 should contact Novell for aversion of Linux Integration Services.
RedHat Enterprise Linux 5.2, 5.3, 5.4, and 5.5 x86 and x64 (Up to 4vCPU)
Note
RedHat Enterprise Linux 5 x64 editions do not support using thePluggable Time Source component. However, you can use the existingtimesync component with the adjtimex RPM package (detailed in thisdocument) to compensate for time drift.
LinuxIntegration Services Version 2.1支持的host的操作系统
WindowsServer® 2008 Standard, Windows Server 2008 Enterprise, and WindowsServer 2008Datacenter(64-bit versions only)
Microsoft®Hyper-V Server 2008
Note
Supportedversions include those updated with Service Pack 1 or Service Pack 2,where available.
WindowsServer? 2008 R2 Standard, Windows Server 2008 R2 Enterprise, andWindows Server 2008 R2 Datacenter
Microsoft?Hyper-V Server 2008 R2
下载集成服务
http://www.microsoft.com/download/en/details.aspx?id=24247
安装集成服务
将得到的文件展开到自己喜欢的目录,然后在虚拟机管理界面的设置要安装集成服务的linux,将解压缩后的镜像文件加载在dvd光碟机中。
Root身份进入系统,在终端执行下列命令
#mkdir /mnt/cdrom (创建目录)
#mount /dev/cdrom /mnt/cdrom (挂在镜像)
#mkdir /opt/linux_ic_v21_rtm
#cp –R /mnt/cdrom/* /opt/linux_ic_v21_rtm (拷贝镜像)
#cd /opt/linux_ic_v21_rtm/
#make (编译)
#make install (安装)
#reboot (重启)
配置网卡
至此集成服务安装成功,输入ifconfig命令可以看见多了个seth0设备(前提是已经在虚拟机管理控制平台添加了网络适配器,不是旧版那个),但是我在图形化管理界面一直无法发现他,最后只好在配置文件中设置,设置文件位置/etc/sysconfig/network-scripts/ifcfg-seth0。我的配置如下
DEVICE=seth0
BOOTPROTO=static(获取ip方式)
IPADDR=192.168.1.140
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
ONBOOT=yes(开机自动激活)
配置好后执行下列命令servicenetwork restart重启网络服务,至此可以不用旧版的网络适配器来连接linux了。