hyper-v ubuntu 12.04 x64 虚拟网卡增加配置

用新版网卡安装的时候会提示找不到网卡. 安装完成之后找不到网卡驱动. 


 
编辑这个文件
sudo vi /etc/initramfs-tools/modules

 
增加
hv_vmbus
hv_storvsc
hv_blkvsc
hv_netvsc
保存

 
更新
sudo update-initramfs –u

 
重启 
reboot

 
查看网卡接口
ipconfig -a

 
成功后 添加 /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.x.1
netmask 255.255.255.0
gateway 192.168.x.254

 
重启网络
/etc/init.d/networking restart

 
编辑DNS
vi /etc/resolv.conf
nameserver 8.8.8.8
完成

你可能感兴趣的:(ubuntu,hyper)