侧边栏壁纸
  • 累计撰写 112 篇文章
  • 累计创建 0 个标签
  • 累计收到 32 条评论

目 录CONTENT

文章目录

linux常用命令

王工
2022-04-10 / 0 评论 / 0 点赞 / 48 阅读 / 122 字

压缩和解压缩

tar -zcvf 压缩文件名 .tar.gz 被压缩文件名
tar -zxvf 压缩文件名.tar.gz

查看端口号占用

netstat -lnp | grep 80

防火墙

1:查看防火状态
systemctl status firewalld
service  iptables status
2:暂时关闭防火墙
systemctl stop firewalld
service  iptables stop
3:永久关闭防火墙
systemctl disable firewalld
chkconfig iptables off
4:重启防火墙
systemctl enable firewalld
service iptables restart  
5:永久关闭后重启
chkconfig iptables on

查看定时任务日志
cat /var/log/cron | grep CRON

0

评论区