linux下安裝和執行wireshark

2021-05-24 07:56:17 字數 1125 閱讀 5110

一、安裝

以root使用者執行:yum install wireshark

二、執行

在終端中鍵入命令:

#wireshark

bash:wireshark:command not found

#whereis wireshark

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

#cd /usr/lib/wireshark

#ls

plugins

#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

解決方法:

成功! from:   

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將....