To be a better coder
发布时间:2019-03-14 15:06:13
fdisk 的 WARNING: Re-reading the partition table failed with error 22: Invalid argument. 出现: WARNING: Re-reading the partition table failed with error 22: Invalid argument.错误,常常是因为在 fdisk 命令中 增删改的顺序有误,导致 fdisk 无所适从。实际已经发生的(被操作改变.........【阅读全文】
发布时间:2019-03-12 16:00:20
出现这种问题 一般在于进行了磁盘分区(GHOST备份时也会造成)导致grub引导文件找不到。我们只要让它找到引导文件就好了。此时屏幕上提示grub resume> 我们先输入set看下现在grub引导指向哪个盘 出现 这表明引导现在指向第一块硬盘的第一分区,而引导文件不在该区 因此出现grub resume待会儿不用尝试该分区.........【阅读全文】
发布时间:2019-03-11 14:50:49
bond的创建方法这里我们还是用nmcli来创建bond我们以bond1模式为例首先我们创建一个连接配置文件nmcli connection add con-name bond0 type bond ifname bond0 mode active-backupmode 后跟的bond模式因为我们还没有在bond连接中绑定网卡所以显示为×××nmcli connection add type bond-slave ifname eth2 master .........【阅读全文】
发布时间:2019-03-07 11:05:22
[root@localhost /]# [root@localhost /]# cat zlg.py #!/bin/pythonfrom random import randintimport timemylist=[1,2,3,4]mylist.reverse()for x in mylist: print xmytuple=(1,2,3,4)for y in range(len(mytuple)-1,-1,-1): print mytuple[y]mystr='hello you are a b.........【阅读全文】
发布时间:2019-03-06 17:24:15
[root@localhost network-scripts]# cat ifcfg-bond0 BOOTPROTO=staticIPADDR=1.1.1.1NETMASK=255.255.255.0DEVICE=bond0ONBOOT=yes[root@localhost network-scripts]# cat ifcfg-ens5TYPE=EthernetBOOTPROTO=noneDEVICE=ens5ONBOOT=noMASTER=bond0slave=yes[root@localhost network-scripts]# cat ifcfg-ens4.........【阅读全文】