摘要:
问题: Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this. Please add this host 阅读全文
摘要:
阅读全文
摘要:
请确保 sar 已经安装并正在记录数据。你可以通过以下步骤确保 sar 正在运行:服务是sysstat 查看 CPU 使用情况: sar -u -s 00:00:00 -e 06:00:00 查看内存使用情况: sar -r -s 00:00:00 -e 06:00:00 查看 I/O 和传输速率: 阅读全文
摘要:
cat /etc/passwd | egrep '^hnoa3|^huxianghui|^zhousichong' |awk -F: '{print $1}' | xargs -I {} sh -c 'echo "User: {}"; id {}; echo " "'cat /etc/passwd 阅读全文
摘要:
修改vsftp回显信息 ansible -i hosts task -m shell -a "grep 'ftpd_banner' /etc/vsftpd/vsftpd.conf" sed -i '/ftpd_banner/s/^/#/g' /etc/vsftpd/vsftpd.conf ansib 阅读全文
摘要:
临时解决方案: #service postfix status#service sendmail status#service postfix stop[root@wign ~]# ps -ef|grep sendmail|wc -l3038[root@wign ~]# ps -ef|grep po 阅读全文
摘要:
linux系统查找占用swap空间最多的10个进程(1)ps -eo pid,user,comm,pmem,vsz --sort=-vsz | head -n 11(2)for i in $(cd /proc;ls | grep "^[0-9]"|awk '$0 >100');do awk '/Sw 阅读全文
摘要:
cat /sys/devices/system/cpu/smt/active 该命令将显示一个数字,表示当前SMT的状态。通常情况下: 如果该文件中的值为1,则表示SMT已启用。 如果该文件中的值为0,则表示SMT已禁用。 请注意,更改该文件的内容可能需要root权限。如果您希望启用或禁用SMT,您 阅读全文
摘要:
#!/bin/bash # 获取所有僵尸进程的PID zombie_pids=$(ps -A -o stat,ppid,pid,cmd | grep -e '^[Zz]' | awk '{print $3}') # 遍历每个僵尸进程的PID并杀死它们 for pid in $zombie_pids; 阅读全文
摘要:
chage -d `date '+%F'` 用户 阅读全文