美文网首页
Linux-查看当前进程

Linux-查看当前进程

作者: 从0到1的小姐姐 | 来源:发表于2022-01-07 13:24 被阅读0次
    ps -A     显示所有   (ps -e也是一样的)
    ps -u     用户,显示指定用户进程信息
    ps -aux   BSD格式输出,列出当前内存中的所有程序
    ps -ef    标准格式输出
    

    ps -ef和ps -aux的区别:

    ps -A

    image.png

    ps -u

    image.png

    ps -aux

    image.png

    ps -ef


    image.png

    相关文章

      网友评论

          本文标题:Linux-查看当前进程

          本文链接:https://www.haomeiwen.com/subject/tafdcrtx.html