要查看 port 被使用, 使用 netstat 即可.
netsta -tunlp
t: tcp, u:udp, n: don't resolve names, l: listening, p: program
但要查看 port 被那隻程式, 就要使用 lsof,
lsof -i
感謝 jclin 教導: netstat -antp 也同樣能看出是哪隻程式佔用著 port.
個人筆記, 記錄關於 系統、程式、新聞 與 日常生活 等資訊
要查看 port 被使用, 使用 netstat 即可.
netsta -tunlp
t: tcp, u:udp, n: don't resolve names, l: listening, p: program
但要查看 port 被那隻程式, 就要使用 lsof,
lsof -i
感謝 jclin 教導: netstat -antp 也同樣能看出是哪隻程式佔用著 port.
for example, netstat -antp.
感謝您的教導, 讓小弟獲益良多~~ m(_ _)m
sockstat 也是可以看到些東西.