linux
knife1220
这个作者很懒,什么都没留下…
展开
-
linux unzip 指定编码
unzip -O GBK xxx.zip原创 2021-04-02 14:21:56 · 2440 阅读 · 0 评论 -
linux 查看进程占用内存
ps -e -o 'pid,comm,args,pcpu,rsz,vsz,stime,user,uid' --sort -rsz原创 2019-01-24 17:32:51 · 3570 阅读 · 0 评论 -
centos系统 利用certbot生成https证书 并配置到nginx
1.安装certbotyum install certbot出现以下错误Failed: python-urllib3.noarch 0:1.10.2-5.el7pip安装python urllib3模块pip install --upgrade --force-reinstall 'requests==2.6.0' urllib3查看帮助certbot ...原创 2018-12-05 16:40:48 · 2062 阅读 · 0 评论 -
curl 发送json参数
curl -i -X POST -H 'Content-type':'application/json' -d {\"a\":\"abcd\"} http://127.0.0.1:28005/原创 2018-08-06 09:48:46 · 22653 阅读 · 2 评论 -
iptables 开放端口
1.查看iptables -L -n2.添加iptables -A INPUT -p tcp --dport 22 -j ACCEPTiptables -A OUTPUT -p tcp --sport 22 -j ACCEPT3.保存service iptables save原创 2018-08-01 14:52:50 · 12189 阅读 · 0 评论 -
linux 查看目录下文件个数
统计某文件夹下文件的个数 ls -l |grep "^-"|wc -l 统计某文件夹下目录的个数 ls -l |grep "^d"|wc -l 统计文件夹下文件的个数,包括子文件夹里的 ls -lR|grep "^-"|wc -l...原创 2018-07-25 15:42:03 · 52314 阅读 · 0 评论 -
linux 搭建pptp
1.安装pptp安装四个组建yum install ppp -yyum install dkms -yyum install -y ppp-develrpm -ivh pptpd-1.4.0-1.el6.x86_64.rpm支持数据包转发vim /etc/sysctl.confnet.ipv4.ip_forward = 1设置局域网ip段vim...原创 2018-07-24 13:38:04 · 3484 阅读 · 0 评论 -
centos 添加全集变量
vim /etc/profile文件末尾加入export KNIFE=iamknife刷新source /etc/profile执行[root@localhost update]# echo $KNIFEiamknife原创 2018-07-24 13:38:18 · 267 阅读 · 0 评论 -
linux 根据端口关闭进程
#!/bin/bashport=$1pid=$(lsof -i:$port|sed -n '2,2p'|awk '{print $2}')echo "pid:$pid"kill -9 $pid原创 2018-07-24 13:38:28 · 1289 阅读 · 0 评论 -
vim 常用操作
上翻页 ctrl+b下翻页 ctrl+f查找 / 后面跟 查找字符串 再按enter可高亮 按n 下一个查找字符串:nohl 取消高亮dd 删除光标所在一行:1 跳首行:$ 跳尾行echo ""> file 快速清空...原创 2018-07-23 15:50:14 · 105 阅读 · 0 评论 -
firewall 端口转发
添加firewall-cmd --permanent --add-forward-port=port=80:proto=tcp:toport=8080:toaddr=192.168.2.235移除firewall-cmd --permanent --remove-forward-port=port=80:proto=tcp:toport=8080:toaddr=192.168.2....原创 2018-07-23 15:49:07 · 1875 阅读 · 0 评论 -
firewalld 开放端口
添加firewall-cmd --zone=public --add-port=80/tcp --permanent重新载入firewall-cmd --reload查看firewall-cmd --zone= public --query-port=80/tcp删除firewall-cmd --zone= public --remove-port=80/tc...原创 2018-07-23 15:40:19 · 5919 阅读 · 0 评论 -
centos 查看硬盘空间
1.查看总体情况df -h2.查看具体某个文件夹du -ms /usr原创 2018-07-23 12:57:32 · 5783 阅读 · 0 评论 -
linux 查看用户列表
cat /etc/passwd|grep -v nologin|grep -v halt|grep -v shutdown|awk -F":" '{ print $1"|"$3"|"$4 }'|more原创 2018-07-23 11:59:04 · 505 阅读 · 0 评论 -
linux对应文件权限标识
1 --x 可执行2 -w- 可写3 -wx 可写可执行(1+2)4 r-- 可读5 r-x 可读可执行 (1+4)6 rw- 可读可写 (2+4)7 rwx 可读可写可执行(1+2+4)0 --- 没有权限 每个文件的权限位共9位 没三组一位 第一组为文件所有者 第二组为文件所在组...原创 2018-07-23 11:38:54 · 946 阅读 · 0 评论 -
查看centos 版本号
cat /etc/redhat-release原创 2018-07-23 11:36:09 · 807 阅读 · 0 评论 -
centos 修改ssh配置
1.配置文件路径/etc/ssh/sshd_config2.配置项配置端口Port 22禁止root远程登录PermitRootLogin no3.重启sshsystemctl restart sshd.service原创 2018-07-23 11:34:58 · 3873 阅读 · 0 评论