摘要: 克隆后网络设备名称eth0变为eth1 参考文章-centos6 克隆 网卡由eth0变为eth1,且启动网卡报错_为什么vi /etc/udev/rules.d/70-persistent-net.rules后一片-CSDN博客 本用户使用的是centos6.5出现此问题 以前用户使用的是cent 阅读全文
posted @ 2023-11-20 11:21 Bre-eZe 阅读(39) 评论(0) 推荐(0)
摘要: x86_64与i386 i586 i686 笔记-别处复制 1、i386、i586、i686与Noarch i386—几乎所有的X86平台,不论是旧的pentum或者是新的pentum-IV与K7系统CPU,都可以正常工作,i指得是Intel兼容的CPU,至于386就是CPU的等级。 i586—就是 阅读全文
posted @ 2023-11-19 22:53 Bre-eZe 阅读(635) 评论(0) 推荐(0)
摘要: 软件中的兼容问题 向前兼容 forward compatibility (向前兼容) = upward compatibility (向上兼容) 也就是向未来兼容,即现在设计的软件要考虑未来还能不能用。 windows7 要能运行 window10 开发的软件 向后兼容 backward compa 阅读全文
posted @ 2023-11-19 21:20 Bre-eZe 阅读(156) 评论(0) 推荐(0)
摘要: linux自定义网络路由 查看网络配置文件 [root@bogon ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 TYPE=Ethernet UUID=3e6b66d4-10b3-46ae-be3c-e1c1fe32a7d 阅读全文
posted @ 2023-11-19 10:36 Bre-eZe 阅读(78) 评论(0) 推荐(0)
摘要: 查看目录,如果有ifcfg-eth0,ifcfg-ens33之类的,表示有网卡 但不确定是否开启,如果使用的vmware,且有桌面的化,可以用鼠标点一点就可以开启网络 [root@bogon network-scripts]# pwd /etc/sysconfig/network-scripts [ 阅读全文
posted @ 2023-11-18 16:05 Bre-eZe 阅读(190) 评论(0) 推荐(0)
摘要: systemctl mask firewalld systemctl --help mask NAME... Mask one or more units unmask NAME... Unmask one or more units [root@hecs-98663 ~]# systemctl s 阅读全文
posted @ 2023-11-16 11:25 Bre-eZe 阅读(232) 评论(0) 推荐(0)
摘要: xsync #!/bin/bash if [ $# -lt 1 ] then echo NOT Enough Argument exit; fi for host in hadoop100 hadoop101 hadoop102 do for file in $@ do if [ -e $file 阅读全文
posted @ 2023-10-13 17:53 Bre-eZe 阅读(24) 评论(0) 推荐(0)