摘要: 1、获取定位城市 定位url:http://ip-api.com/json/?lang=zh-CN 数据格式为json # get_city.py import requests import sys def get_CityName(): try: res = requests.post(url= 阅读全文
posted @ 2021-09-15 14:55 sxFu9528 阅读(609) 评论(0) 推荐(0) 编辑
摘要: 1、du命令 -a或-all 显示目录中个别文件的大小 -b或-bytes 显示目录或文件大小时,以byte为单位 -c或--total 除了显示个别目录或文件的大小外,同时也显示所有目录或文件的总和 -D或--dereference-args 显示指定符号连接的源文件大小 -h或--human-r 阅读全文
posted @ 2021-08-27 15:02 sxFu9528 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1、mininet构建虚拟环境 mn --topo=tree,depth=1,fanout=3 --mac 2、h1 ping h6 h1 ping -c 6 h6 3、tcpdump命令 tcpdump [ -DenNqvX ] [ -c count ] [ -F file ] [ -i inte 阅读全文
posted @ 2021-08-17 11:17 sxFu9528 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1、查找文件text中第五行的内容 命令: sed -n '5p' text 2、查找文件text中第五行到第十行的内容 命令: sed -n '5,10p' text 阅读全文
posted @ 2021-08-16 11:50 sxFu9528 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash Green_Success(){ echo ' '; printf '\033[1;32;40m[success] %b\033[0m\n' "$1"; } Yellow_Warnning(){ echo ' '; printf '\033[1;33;40m[warnning 阅读全文
posted @ 2021-08-13 17:06 sxFu9528 阅读(917) 评论(0) 推荐(0) 编辑
摘要: 下载包地址:https://golang.google.cn/dl/ 1、go语言特色 简洁、快速、安全 并行、有趣、开源 内存管理、数组安全、编译迅速 2、go语言最主要的特性 自动垃圾回收 更丰富的内置类型 函数多返回值 错误处理 匿名函数和闭包 类型和接口 并发编程 反射 语言交互性 3、安装 阅读全文
posted @ 2021-08-10 13:45 sxFu9528 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1、源码安装 cd /opt git clone git://github.com/mininet/mininet.git - 选择版本 cd mininet git tag sudo git checkout -b tag_name - 安装Mininet cd /opt/mininet/util 阅读全文
posted @ 2021-08-04 11:42 sxFu9528 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 1、安装依赖 yum -y install gcc zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel x 阅读全文
posted @ 2021-05-30 11:18 sxFu9528 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 1、JDK安装 # 使用rz命令将jdk1.8.0_77.tar.gz上传至/opt/app目录 # 解压:tar -xzf jdk1.8.0_77.tar.gz 2、下载weblogic包 官方地址:https://www.oracle.com/middleware/technologies/fu 阅读全文
posted @ 2021-05-28 00:02 sxFu9528 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 一、安装版本 链接:https://pan.baidu.com/s/1WD_clSNZGkbL5FDT43IoNg 提取码:mhzm filebeat-7.4.0-linux-x86_64.tar.gz elasticsearch-7.4.0-linux-x86_64.tar.gz kibana-7 阅读全文
posted @ 2021-05-10 16:58 sxFu9528 阅读(365) 评论(0) 推荐(0) 编辑