1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| ps aux //查看进程 ps aux|grep [nginx] //查看nginx进程 ps -u [root] //查看root用户进程 #案例 ps aux|grep 30504 ls -lh /proc/30504 top //查看实时进程 P:以cup占用降序排序 M:以内存占用降序排序 C:完整命令内容 netstat -anp //端口占用信息 netstat -anpt //只查看tcp端口信息 uname -a //查看当前操作的Linux内核 lsb_release -a //查看发行版本 cat head tail //查看文件全部&头部&尾部 -n参数指定输出行数 tail -f auth.log //实时地输出最新的日志 ls /var/log //查看日志目录 crontab -l //列表系统的计划任务 crontab -e //进入编辑模式 crontab -u root -e //查看特定用户的计划任务 cat /var/spool/cron/crontabs/[root] //查看不同用户的计划任务 history //历史命令操作记录 cat ~/.bash_history //查看命令操作历史 lastlog //最后登录信息 *last -f/var/log/wtmp //历史用户登录信息 find . -name "*.txt" //当前目录查找txt文件
#查找时间范围内修改文件 touch -t time1 t_start //touch:生成空文件 touch -t time2 t_end find . -type f -newer t_start ! -newer t_end //查找时间段内修改的文件
|