美文网首页
osx 进程和服务

osx 进程和服务

作者: cityhash123 | 来源:发表于2019-08-15 15:30 被阅读0次

    2019-08-15 端口查进程

    端口查进程

    同 linux 的 netstat -ntlp | grep 50051

    lsof -i tcp:50051
    

    进程名查找进程

    ps -ef  | grep svr
    

    动态链接库查询

    同 linux 的 ldd

    otool -L bid_svr
    

    监测进程调用

    同 linux 的 strace

    dtruss -p 30054
    dtruss cmd
    

    相关文章

      网友评论

          本文标题:osx 进程和服务

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