第1章 例:检查文件系统挂载状态 1.1 自动发现文件系统名称脚本 vi Linux_mountfilename_discovery.sh portarray=(`mount |grep "^/" |grep -E "ext3|reiserfs|ext4|xfs" |awk '{print $3}' ...
分类:
其他好文 时间:
2020-07-12 17:16:39
阅读次数:
174
文本处理器sed sed是一种流编辑器,一次处理一行,处理空间被称为模式空间,配合正则表达式与shell脚本使用广泛。 默认打印p选项 选项 -n 关闭默认打印 -i.bak 将原文件复制为.bak备份文件,并修改原文件 -r 配合扩展表达式 支持正则表达式,用/pattern/格式 地址界定 不给 ...
分类:
其他好文 时间:
2020-07-12 16:38:36
阅读次数:
72
[root@kunpeng82 Ryu-SDN-IP]# ./bin/sdnip-mgr --sdn-ip-cfg-file ./config.json --observe-links sdnip.arp_proxy sdnip.fwd_bgp sdnip.sdn_ip Traceback (mos ...
分类:
其他好文 时间:
2020-07-12 14:36:42
阅读次数:
94
[root@kunpeng82 mininet]# ls /lib/systemd/system/zebra.service /lib/systemd/system/zebra.service [root@kunpeng82 mininet]# vi /lib/systemd/system/zebr ...
分类:
其他好文 时间:
2020-07-12 14:15:10
阅读次数:
68
环境:oracle12c 1、链接rman RMAN RMAN> connect target / 使用sys用户连接 connected to target database: ORCL (DBID=1567775293) RMAN> connect target "sys/oracle@orcl ...
分类:
其他好文 时间:
2020-07-12 12:26:18
阅读次数:
65
systemctl命令: 1、启动防火墙 systemctl start firewalld.service 或 systemctl start firewalld 2、关闭防火墙 systemctl stop firewalld.service 或 systemctl stop firewalld ...
分类:
系统相关 时间:
2020-07-12 10:40:13
阅读次数:
90
先要对宿主机增大cpu数量 加到4处理器、2内核、8线程 查看 CPU 物理个数 grep 'physical id' /proc/cpuinfo | sort -u | wc -l 查看 CPU 核心数量 grep 'core id' /proc/cpuinfo | sort -u | wc -l ...
分类:
其他好文 时间:
2020-07-12 10:36:41
阅读次数:
75
查看nginx是否安装 linux中查看nginx的安装位置 在命令行输入ps -ef | grep nginx root 973 1 0 19:14 ? 00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf ...
分类:
其他好文 时间:
2020-07-12 00:29:22
阅读次数:
191
什么是正则表达式 我们希望只提取出关注的数据,此时可以通过一些表达式进行提取,正则表达式就是其中一种进行数据筛选的表达式。 原子 原子是正则表达式中最基本的组成单位,每个正则表达式中至少包含一个原子 常见的原子类型有: 1、 普通字符作为原子 2、 非打印字符作为原子 3、 通用字符作为原子 4、 ...
分类:
编程语言 时间:
2020-07-11 19:30:24
阅读次数:
49
原文出处:http://www.51testing.com/?uid-225738-action-viewspace-itemid-210333测试机器的硬件信息:查看CPU信息(型号)# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 8 ...
分类:
系统相关 时间:
2020-07-11 19:06:43
阅读次数:
77