Linux下安裝和執行Wireshark

2021-08-02 01:46:55 字數 1448 閱讀 3477

一、安裝

以root使用者執行:yum install wireshark

二、執行

在終端中鍵入命令:

#wireshark

bash:wireshark:command not found

#whereis wireshark

wireshark: /usr/lib/wireshark /usr/share/wireshark

#cd /usr/lib/wireshark

#lsplugins

#cd /usr/share/wireshark; ls

authors-short  dtds          mergecap.html  tshark.html

capinfos.html  dumpcap.html  radius          wimaxasncp

cfilters      editcap.html  rawshark.html  wireshark-filter.html

colorfilters  help          services        wireshark.html

copying        idl2wrs.html  smi_modules    ws.css

dfilters      ipmap.html    text2pcap.html

diameter      manuf        tpncp

解決方法:

yum search wireshark(搜尋匹配特定字元的rpm包)

yum install wireshark-gnome.i386(wireshark的圖形介面)

#whereis wireshark

wireshark: /usr/bin/wireshark /usr/sbin/wireshark /usr/share/wireshark /usr/share/man/man1/wireshark.1.gz

#wireshark

成功!使用

檢視指定埠的包:在過濾條件中輸入 tcp.port eq 7905 

檢視指定ip的包:ip.addr eq 192.168.1.104

檢視指定ip和port的包:ip.addr eq 192.168.1.104 and tcp.port eq 7905

網路抓包工具wireshark的簡單使用

ubuntu 12.04 下安裝wireshark

linux中從普通使用者啟動wireshark抓包

wireshark 的詳細介紹:請點這裡

:請點這裡

linux下安裝和執行wireshark

一 安裝 以root使用者執行 yum install wireshark 二 執行 在終端中鍵入命令 wireshark bash wireshark command not found whereis wireshark wireshark usr lib wireshark usr share...

Linux下zookeeper安裝及執行

第二步 把 zookeeper 的壓縮包 資源 配套軟體 dubbox zookeeper 3.4.6.tar.gz 上傳到 linux 系統。第三步 解壓縮壓縮包 tar zxvf zookeeper 3.4.6.tar.gz 第四步 進入 zookeeper 3.4.6 目錄,建立 data 資...

Linux 下C編譯和執行過程

1.預處理階段 gcc e o example.i example.c將宣告在標頭檔案中的內容加到生成的.i檔案中 2.編譯階段 gcc s o example.s example.i將.i檔案內容編譯成組合語言後生成.s檔案 3.彙編階段 gcc o example.o c example.c將....