shell脚本解决虚拟机网卡不识别

post by rocdk890 / 2013-9-28 0:15 Saturday linux技术
  根据上一篇文章解决Device does not seem to be present,今天在网上突然发现已经有人写了个shell脚本来解决这个问题了,现在共享给大家.

脚本内容:

vi network-issue-fix.sh
echo "Updating 70-persistent-net.rules with eth0..."
sed -i '7,9d' /etc/udev/rules.d/70-persistent-net.rules
sed -i s/eth1/eth0/g /etc/udev/rules.d/70-persistent-net.rules

echo "Updating ifcfg-eth0 with new MAC address..."
newmac=`ip a | tail -n 1 | awk '{print $2}'`
oldmac=`grep HWADDR /etc/sysconfig/networking/devices/ifcfg-eth0 | awk -F "=" '{print $2}'`
sed -i s/$oldmac/$newmac/g /etc/sysconfig/networking/devices/ifcfg-eth0
cp /etc/sysconfig/networking/devices/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0

echo "Rebooting the OS"
sleep 2
reboot


然后执行
chmod +x network-issue-fix.sh
./network-issue-fix.sh
执行脚本后会重启,重启之后问题就解决了.当然如果你的网卡不是eth0,那就要自己修改下上面的脚本了.

ps:http://heylinux.com/archives/2416.html
夜空- 本站版权
1、本站所有主题由该文章作者发表,该文章作者与夜空享有文章相关版权
2、其他单位或个人使用、转载或引用本文时必须同时征得该文章作者和夜空的同意
3、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
4、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
5、原文链接:blog.slogra.com/post-455.html

标签: shell 脚本 vmware 网卡 虚拟机

评论: