摘要:
linux, kill掉占用60%多cpu的进程,几秒后换个pid 和 command 又出现?快速清理木马流程。假设木马的名字是xysbqaxjqy,如果top看不到,可以在/etc/init.d目录下面查看 1、首先锁定三个目录,不能让新木马文件产生chmod 000 /usr/bin/xysb 阅读全文
摘要:
top -u root 查看系统进程service network restartservice iptables restartservice sshd restartservice nginx restartservice mysqld restart chkconfig 阅读全文
摘要:
1.配置IP地址vi /etc/sysconfig/network-scripts/ifcfg-eth0 ONBOOT=yes NM_CONTROLLED=yes BOOTPROTO=static DNS1=223.5.5.5 IPV6INIT=no USERCTL=no IPADDR=111.41 阅读全文
摘要:
1.新建/test/killcpu.sh shell脚本 并授予权限0755#!/bin/bashps axf -o "pid %cpu" | awk '{if($2>=50.0) print $1}' | while read prociddokill -9 $prociddone 2.安装cro 阅读全文