cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {}
lsblk
lsblk -f
cat /etc/redhat-release
last -f /var/log/wtmp
ls -l | grep "^d" | wc -l
ls -l | grep "^-" | wc -l
ls -lR| grep "^-" | wc -l
ls -lR | grep "^d" | wc -l
ls -l /proc/$PID/exe 或 file /proc/$PID/exe
ls -l /proc/$PID8/exe 或 file /proc/$PID/exe
ps -ef --sort -pcpu
ps -aux --sort=-pcpu|head -10
ps -eo pid,tty,user,comm,lstart,etime|grep fastq
more /etc/cron.daily/*
chkconfig --list | grep "3:启用\|5:启用"
chkconfig --list | grep "3:on\|5:on"
1表示:单用户模式
2表示:无网络连接的多用户命令行模式
3表示:有网络连接的多用户命令行模式
4表示:不可用
5表示:带图形界面的多用户模式
6表示:重新启动
/var/spool/cron/*
/etc/crontab
/etc/cron.d/*
/etc/cron.daily/*
/etc/cron.hourly/*
/etc/cron.monthly/*
/etc/cron.weekly/
/etc/anacrontab
/var/spool/anacron/*
vim /etc/inittab
# Default runlevel. The runlevels used are:
# 0 - halt (Do NOT set initdefault to this)
# 1 - Single user mode
# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)
# 3 - Full multiuser mode
# 4 - unused
# 5 - X11
# 6 - reboot (Do NOT set initdefault to this)
#
id:5:initdefault
ping ip | awk {print $0"\t" strftime("%H:%M:%S",systime())} > 20181205.log
nohup xxxx &
- 使用ps命令找出占用内存资源最多的20个进程(数量可以任意设置)
ps aux | head -1;
ps aux | grep -v PID |sort -rn -k +4 | head -20
- 查看进程占用的实际物理内存
与smem看到实际物理内存大小有出入,SIZE: 进程使用的地址空间, 如果进程映射了100M的内存, 进程的地址空间将报告为100M内存. 事实上, 这个大小不是一个程序实际使用的内存数. 所以这里看到的内存跟smem看到的大小有出入
ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -n -r | less
echo 'set number' >> ~/.vimrc