• linux 常用的命令


    • 查看所有用户任务计划
    cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {}
    
    • 查看设备的挂载情况
    lsblk
    lsblk -f
    
    • 查看rhel或centos版本
    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
    
    • 根据进程号($PID为对应的pid号)查文件
    ls -l /proc/$PID/exe 或 file /proc/$PID/exe
    ls -l /proc/$PID8/exe 或 file /proc/$PID/exe
    
    • 按照CPU使用率从高到低排序
    ps -ef --sort -pcpu
    ps -aux --sort=-pcpu|head -10
    
    • 查看指定目录下所有文件
    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记录到日志
    ping ip | awk {print $0"	" strftime("%H:%M:%S",systime())} > 20181205.log
    
    • 后台启动程序
      使用job查看
    nohup xxxx &
    
  • 相关阅读:
    洛谷P3953 逛公园
    洛谷P1247 取火柴游戏
    洛谷P2024 食物链
    洛谷P2680 运输计划
    hdu 1495 非常可乐(bfs)
    poj3984 迷宫问题(简单的输出路径的bfs)
    Codeforces 729C Road to Cinema(二分)
    Codeforces Technocup 2017
    Codeforces Technocup 2017
    poj 2251 Dungeon Master(bfs)
  • 原文地址:https://www.cnblogs.com/GYoungBean/p/14675216.html
Copyright © 2020-2023  润新知