Fork me on GitHub
摘要: 1、lsof -a /data/test.txt #通过lsof -a 查看到less 在使用这个文件 2、 lsof |grep delete #lsof 可以查看到所有正在运行的进程,grep 过滤出删除的delete。 3、记住进程编号“9903” 4、ll /proc/9903/fd #fd 阅读全文
posted @ 2019-12-31 16:43 Alex-Lzy 阅读(881) 评论(0) 推荐(0) 编辑
摘要: 一 、自建yum仓库,分别为网络源和本地源 [base]name=cdrom basebaseurl=file:///misc/cdgpgcheck=0 [epel]name=aliyun epelbaseurl=https://mirrors.aliyun.com/epel/$releasever 阅读全文
posted @ 2019-12-24 11:16 Alex-Lzy 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1、创建用户脚本 #!/bin/bash##********************************************************************#Author: 小汤圆#: #Date: 2019-12-04#FileName: CreateUser.sh#URL 阅读全文
posted @ 2019-12-05 17:59 Alex-Lzy 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 1、创建用户脚本 #!/bin/bash##********************************************************************#Author: 小汤圆#: #Date: 2019-12-04#FileName: CreateUser.sh#URL 阅读全文
posted @ 2019-12-04 13:20 Alex-Lzy 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1、查找/etc目录下大于1M且类型为普通文件的所有文件 find /etc/ -size +1M -type f 2、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。 find /etc/ -type f -name "*.con 阅读全文
posted @ 2019-12-02 09:42 Alex-Lzy 阅读(106) 评论(0) 推荐(0) 编辑
摘要: cd:cd /data 切换文件夹到/data cd ..回到上级文件夹 cd ~ 回到家目录 cd 默认回到家目录cd - 回到刚刚离开的目录(只能回一次) pwd 显示当前目录路径 time 后面跟命令,可以显示命令的执行时间(可以用来比较两个命令的执行快慢) ls 和ll:ls 列出当前目录下 阅读全文
posted @ 2019-11-29 11:35 Alex-Lzy 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 首先是看centos7的防火墙的状态,查看的命令为: sudo systemctl status firewalld。 查看后,看到active(running)就意味着防火墙打开了, 如果想关闭防火墙,命令为: sudo systemctl stop firewalld。 关闭后查看是否关闭成功, 阅读全文
posted @ 2019-11-29 10:42 Alex-Lzy 阅读(10942) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 1、统计出/etc/passwd文件中其默认shell为非/sbin/nologin的用户个数,并将用户都显示出来 awk -F: '{shells[$NF]++;if($NF == "/sbin/nogin"){print $1,$NF}}END{for(i in shells){p 阅读全文
posted @ 2019-11-25 17:13 Alex-Lzy 阅读(98) 评论(0) 推荐(0) 编辑
摘要: cp /etc/profile /tmp/ cat /tmp/profile |tr d ' 阅读全文
posted @ 2019-11-19 16:01 Alex-Lzy 阅读(619) 评论(0) 推荐(0) 编辑
摘要: vim中设置tab缩进为4个字符 set tabstop=4 阅读全文
posted @ 2019-11-18 14:46 Alex-Lzy 阅读(968) 评论(0) 推荐(0) 编辑