博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决克隆 centos虚拟机后修改克隆后的机器的ip、mac、uuid失败的问题
阅读量:6830 次
发布时间:2019-06-26

本文共 1002 字,大约阅读时间需要 3 分钟。

解决办法:

 

So here’s how we fix it:

  1. Remove the kernel’s networking interface rules file so that it can be regenerated

     

    # rm -f /etc/udev/rules.d/70-persistent-net.rules

     

  2. Restart the VM

     

    # reboot

     

  3. UPDATE your interface configuration file

     

    # vi /etc/sysconfig/network-scripts/ifcfg-eth0 

    Remove the MACADDR entry or update it to the new MACADDR for the interface (listed in this file: /etc/udev/rules.d/70-persistent-net.rules).

    Remove the UUID entry

    Save and exit the file

  4. Restart the networking service

     

    # service network restart

     

Happy cloning!

二.另一种方法
造成这样的原因,是因为在虚拟机(Vmware)中移动了Centos系统对应的文件,导致重新配置时,网卡的MAC地址变了,输入ifconfig -a,找不到eth0
·······
 
安装完一个centos虚拟机,又拷贝一份,开机后网卡无法正常启动,报错:Device eth0 does not seem to be present, 
delaying initialization
解决:# mv /etc/sysconfig/network-scripts/ifcfg-eth0 
sysconfig/network-scripts/ifcfg-eth1
vim 
sysconfig/network-scripts/ifcfg-eth1
修改DEVICE="eth0" 
为DEVICE="eth1"
修改IP地址,删除mac地址(HWADDR),删除UUID项。
然后重启启动网卡尝试下
 

转载于:https://www.cnblogs.com/sixiweb/archive/2013/05/31/3110734.html

你可能感兴趣的文章
部署无需边缘提供外部访问的Lync Server前端
查看>>
最常用的四种数据分析方法
查看>>
c++学习笔记:类的若干基础问题
查看>>
ubuntu更改sso文件策略
查看>>
业务开发测试HBase之旅三:通过Java Api与HBase交互
查看>>
让ComboBox显示图片--PictureComboBox
查看>>
JS父页面获取子页面返回值
查看>>
鼠标点击主窗体时,模态子窗口是WindowStyle.None时如何闪烁
查看>>
LABJS源码浅析
查看>>
myShellcode
查看>>
Qore Oracle Module 2.2 发布
查看>>
MoonScript 0.2.2 发布,基于 Lua 的脚本语言
查看>>
assertThat使用方法
查看>>
2013年11月11日工商银行笔试总结
查看>>
Qt之问题求助——当VS遇到“向Pro中添加代码”怎么办?
查看>>
使用reserve函数避免vector和string的内存重新分配
查看>>
ADO.NET(内含存储过程讲解)
查看>>
利用TreeView实现C#工具箱效果
查看>>
PyTalk : a Jabber Client un Python using xmpppy and PyQt4
查看>>
C++类构造函数初始化列表(转)
查看>>