田同学应用的零碎是 centos7 零碎,所以总结的 Linux 命令以 centos7 为主,会将罕用的命令总结并继续更新。
文件相干
解压 tar -xf
压缩 tar -zcvf test.tar.gz ./test/ 压缩
查找文件 find / -name nginx.conf
文件赋权 chmod -R 777 文件读写权限
防火墙
查看防火墙状态 systemctl status firewalld
查看凋谢防火墙端口 firewall-cmd --list-all
关上 3306 端口 firewall-cmd --zone=public --add-port=3306/tcp --permanent
–zone #作用域
–add-port=80/tcp #增加端口,格局为:端口 / 通信协定
–permanent #永恒失效,没有此参数重启后生效
重置防火墙 firewall-cmd --reload
运维
查看内存占用前五的过程 ps auxw|sort -rn -k4|head -5
查看前一百行日志 tail -fn 100 nohup.log
vi 末行 shift + g
查看当前目录下文件夹大小 du -h --max-depth=1
查看运行端口 netstat -nlp|grep 8888
部署
jar 包启动 nohup java -Dfile.encoding=utf-8 -jar 0923.jar>nohup.log 2>&1 &
nginx
启动:sudo systemctl start nginx
进行服务:sudo systemctl restart nginx
重载服务:sudo systemctl reload nginx