上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 18 下一页
摘要: 1、点击Option → Global Option → General → Configuration Paths查看配置文件目录2、在配置文件目录新建keywords文件夹3、新建ini后缀文件,填入以下内容 D:"Match Case"=00000000 Z:"Keyword List V2" 阅读全文
posted @ 2019-11-18 12:41 風£飛 阅读(2220) 评论(0) 推荐(0)
摘要: # 创建版本库 git clone <url> # 克隆远程版本库 git init # 初始化本地版本库 # 修改和提交 git status # 查看状态 git diff # 查看变更内容 git add . # 跟踪所有改动过的文件 git add <file> # 跟踪指定的文件 git 阅读全文
posted @ 2019-11-12 22:17 風£飛 阅读(183) 评论(0) 推荐(0)
摘要: 查看ubuntu版本:lsb_release -a、cat /etc/os-release安装ifconfig命令:apt-get install net-tools安装ping命令:apt-get install iputils-ping安装ip命令:apt-get install iproute 阅读全文
posted @ 2019-10-30 09:31 風£飛 阅读(332) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python # -*- coding:utf-8 -*- __version__ = "0.2" import os import select import socket import struct import sys import time # From /usr/include/linux/icmp.h; your milage may vary. ... 阅读全文
posted @ 2019-10-24 10:13 風£飛 阅读(462) 评论(0) 推荐(0)
摘要: #!/bin/python # -*- coding:utf-8 -*- import socket from concurrent.futures import ThreadPoolExecutor def dict(ip, port): dic = {'ip': ip, 'port': port 阅读全文
posted @ 2019-08-20 15:45 風£飛 阅读(263) 评论(0) 推荐(0)
摘要: 1、条件表达式 表达式 [ expression ] [[ expression ]] [[ test expression ]] 示例 [ 1 –eq 1 ] [[ 1 –eq 1 ]] test 1 –eq 1,等同于[ 1 -eq 1 ] 2、整数比较 比较符 描述 示例 -eq,equal 阅读全文
posted @ 2019-07-31 14:54 風£飛 阅读(268) 评论(0) 推荐(0)
摘要: 可道云部署wget -c https://www.apachefriends.org/xampp-files/5.6.35/xampp-linux-x64-5.6.35-0-installer.runchmod +x xampp-linux-x64-5.6.35-0-installer.runsud 阅读全文
posted @ 2019-07-23 16:47 風£飛 阅读(266) 评论(0) 推荐(0)
摘要: 1、python访问zabbix api from urllib import parse, request import json, requests class Zabbix_api(object): def __init__(self, ip): self.url = 'http://%s/z 阅读全文
posted @ 2019-07-09 16:17 風£飛 阅读(473) 评论(0) 推荐(0)
摘要: 一、安装dnsmasq服务yum install -y dnsmasq 二、dnsmasq服务主配置文件[root@localhost]# cp /etc/dnsmasq.conf{,.bak}[root@localhost]# vim /etc/dnsmasq.conf #log-dhcp #由于 阅读全文
posted @ 2019-05-23 15:22 風£飛 阅读(2910) 评论(0) 推荐(0)
摘要: 1、安装依赖包[root@Zabbix-proxy ~]# yum -y install mysql mariadb-server mysql-devel net-snmp-devel libssh2-devel[root@Zabbix-proxy ~]# useradd -s /sbin/nolo 阅读全文
posted @ 2019-05-10 14:26 風£飛 阅读(469) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 18 下一页