vm在更换新的目录后,启动ubuntu会发现在找不到原来的IP地址,使用ifconfig看不能网卡。
解决方法:
1、使用ifconfig -a 可以看到所有网卡,但没有IP,记住eth1或eth2,一般更换一次目录就会换一个。
2、sudo vim /etc/network/interfaces
将文件中的ethX改成与上面用ifconfig -a 查看到的数字一样的。
如:iface eth1 inet dhcp
这样会自动分配IP
或者:
iface eth1 inet static
address 192.168.1.12
netmask 255.255.255.0
gateway 192.168.1.1
指定固定IP
保存。
执行sudo /etc/init.d/networking restart
重启网络服务 。
posted on 2010-08-22 10:50
Libo 阅读(445)
评论(0) 编辑 收藏