To be a better coder
发布时间:2019-03-13 15:13:55
数量词{1,2}非贪婪{1,2}?* 号 前面的字符匹配0次或无限多次+号 前面的字符匹配一次或无限多次?号前面的字符匹配0次或一次边界匹配^ $以上都是指的字符,下面介绍组组的概念()[root@localhost /]# cat str.py #!/bin/pythonimport rea='python 1111java678php'b=re.findall('[a-z]{3,6}?',a.........【阅读全文】
发布时间: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.........【阅读全文】