【Linux】不常用命令记录

查看开启的网络端口

1、使用netstat命令“netstat -tuln”,该命令将显示所有当前监听的TCP和UDP端口;
2、使用ss命令“ss -tuln”,用于显示当前监听的TCP和UDP端口;
3、使用lsof命令“lsof -i”,将显示当前打开的网络连接和监听的端口。

清空journalctl 日志
journalctl --rotate && journalctl --vacuum-time=1s

列出所有已经运行的服务
systemctl list-units -l --type=service

ipmitool 改IP
ipmitool lan set 1 ipsrc static
ipmitool lan set 1 ipaddr 1.1.1.1
ipmitool lan set 1 defgw ipaddr 1.1.1.1
ipmitool lan set 1 netmask 255.255.255.0
ipmitool lan print

永久更新中。。。

你可能感兴趣的:(linux,运维,服务器)