I am new to Linux and have a need to install Wireshark 2.0.0 on VirtualBox's Xubuntu 14.04.
I have already downloaded .tar.gz package and extracted it. Then I opened terminal in the wireshark folder and type /.configure with intention to follow it by make and sudo make install executions but the attempt as unsuccessful as sudo apt-get install wireshark.
Could somebody help me how to install Wireshark step by step, please?
6 Answers
Step 1: Add the stable official PPA. To do this, go to terminal by pressing Ctrl+Alt+T and run:
sudo add-apt-repository ppa:wireshark-dev/stableStep 2: Update the repository:
sudo apt-get updateStep 3: Install wireshark 2.0:
sudo apt-get install wiresharkStep 4: Run wireshark:
sudo wiresharkIf you get a error couldn't run /usr/bin/dumpcap in child process: Permission Denied. go to the terminal again and run:
sudo dpkg-reconfigure wireshark-commonSay YES to the message box. This adds a wireshark group. Then add user to the group by typing
sudo adduser $USER wiresharkThen restart your machine and open wireshark. It works. Good Luck.
3Open terminal and type the commands:
sudo apt-get install wiresharksudo dpkg-reconfigure wireshark-commonsudo adduser $USER wiresharkwireshark
If you getting wireshark running error, so close it and then just do the following:
- Go to
usr/share/wireshark - Open
init.luawith a text editor - Change
disable_lua = falsetodisable_lua = true
To do this, go to terminal by pressing Ctrl+Alt+T and run:
sudo apt install wiresharkApt should take care of all of the dependency issues for you.
Use the following command to install downloaded Wireshark debs:
dpkg -i wireshark-common_2.0.5.0-1_i386.deb wireshark_wireshark-2.0.5.0-1_i386.debdpkg doesn’t take care of all dependencies, but reports what’s missing. You can usually resolve problems by then running
sudo apt install -f For those on ubuntu 18.04, go to terminal and run:
sudo apt install wiresharkIt will install wireshark ( in my case v2.6.8 ) and you will be asked to add dumpcap in wireshark user group so you don't need to be root to execute it.
If you say:
NO > you're good to go, but you gonna need root privileges to run it.
YES > after installation finishes you should add yourself to wireshark user group:
sudo usermod -a -G wireshark YOUR_USERNAMEThat's ALL!
To add to Thusitha's answer, in Step 4 you either run as sudo or if you do not want to run all processes as root, then you set the message box to 'YES' (to install dumpcap in such a way that it allows users of the wireshark group to run it without sudo) and add user to wireshark group. (be sure to log out and log in before running wireshark so that the group privileges are reloaded). You can then just run wireshark without root.
Type
sudo apt updateThe APT package repository cache should be updated.Now, Run the following command to install Wireshark on your Ubuntu machine:
sudo apt install wireshark
By default, Wireshark must be started as root (can also be done with sudo) privileges in order to work. If you want to run Wireshark without root privileges or without sudo, then select and press .
- Wireshark should be installed.