查看某个端口的连接情况:
linux下:查看7080端口:netstat -anp | grep 7080
Windows下:netstat -anp | findstr 端口
rm -rf 目录名字删除命令。
======================================
ping -c 4 [ip/域名]可以让Linux只ping4次。写几ping几次。
ctrl+c 可以停止ping。linux控制台程序一般强制终止都是Ctrl+C。部分使用Ctr+D。倘若是这两种都无法使用的话,需要使用Ctr+Z将当年任务后台化,然后通过jobs 和kill %n命令来强制终止。
=====================================================
systemctl stop firewalld # 临时关闭防火墙
systemctl disable firewalld # 禁止开机启动
1.service方式
查看防火墙状态:service iptables status
关闭防火墙:service iptables stop
2.iptables 方式
查看防火墙状态:/etc/init.d/iptables status
重启防火墙:/etc/init.d/iptables restart
暂时关闭防火墙:/etc/init.d/iptables stop
========================================
查看磁盘使用情况:
df -h
=====================================
查看是否以及安装了git或者某个软件:
rpm -qa | grep xxx 查询某个安装包
rpm -ql xxx :查询某个包安装路径
或者直接在终端敲git
,如果已经安装会提示你命令使用方法。
====================================================================
查询某个端口号的进程并杀死:
netstat -tunpl |grep 8083