JDP 發表於 2012-3-7 23:42:05

CentOS 6.2 + Linux Integration Services Version 3.2

1. 媒體=>DVD光碟機=>插入磁碟=>Linux IC v3.2.iso
2. mount /dev/cdrom /media
3. cd /media
4. ./install.sh
5. reboot

當安裝完之後,輸入ifconfig會發現沒有網卡,只有一個lo
解決方法:

[*]vi /etc/sysconfig/network 加入以下內容
NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=xxx.xxx.xxx.xxx
[*]vi /etc/sysconfig/network-scripts/ifcfg-eth0 加入以下內容
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=123.123.123.123
GATEWAY=123.123.123.254
(註:如果是DHCP則BOOTPROTO=DHCP,IPADDR跟GATEWAY就不用設了)
[*]vi /etc/resolv.conf 加入以下內容
nameserver 8.8.8.8
[*]service network restart

Reference:
http://terrytlslau.tls1.cc/2011/08/installing-linux-integration-services.html
http://linux.vbird.org/linux_server/redhat6.1/linux_21internet.php
http://social.technet.microsoft.com/Forums/zh-TW/linuxintegrationservices/thread/da1431a6-50be-4e58-9c4b-211df78a6a98
http://zhcxl.blog.51cto.com/211202/741598

JDP 發表於 2012-9-17 09:50:09

mount: you must specify the filesystem type

如果之後要安裝新版的Linux Integration Services Version for Hyper-V,會碰到沒有辦法mount /dev/cdrom /media (出現mount: you must specify the filesystem type)
,這時必需先執行此行指令後,就可以mount cdrom了!
insmod /lib/modules/$(uname -r)/kernel/drivers/ata/ata_piix.ko

Reference:   
why cant i mount a cd dvd after i install integration services in RHEL?
http://social.technet.microsoft.com/Forums/en-US/linuxintegrationservices/thread/7acc7465-f585-4927-9869-d657ecf0dd48
BUG: After LISv3.1 install I have no cdrom/sr0
http://social.technet.microsoft.com/Forums/en-US/linuxintegrationservices/thread/5a5d17ce-bd03-40fd-bf1e-0afe59493502
頁: [1]
查看完整版本: CentOS 6.2 + Linux Integration Services Version 3.2