This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Install both 1.12.7 & 2.0 on OS X

0

How can I install 2 different versions on OS X? By default, the installation happens in /Applications/Wireshark.

I tried to rename the bundle to Wireshark_2.0.0 and install 1.12.7, but nothing appears: No new Wireshark app

asked 06 Oct '15, 05:01

TomLaBaude's gravatar image

TomLaBaude
66171724
accept rate: 66%


One Answer:

1

I'm pretty sure the package installer uses Wireshark's bundle identifier (CFBundleIdentifier) to locate the application bundle. This is convenient because you can move the Wireshark.app directory around and rename it. It's not so convenient because no matter where Wireshark.app is or what it's called, the installer will track it down.

You should be able to work around this by doing something like the following:

  1. Install version X
  2. Rename /Applications/Wireshark.app to /Applications/Wireshark X.app
  3. Zip up /Applications/Wireshark X.app
  4. Remove /Applications/Wireshark X.app
  5. Install version Y
  6. (Optional) Rename /Applications/Wireshark.app to /Applications/Wireshark Y.app
  7. Unzip Wireshark X.app.

Note that upgrading from here gets tricky since you now have two apps with the same bundle identifier. In the long term we should probably make Wireshark a drag-installer like most other OS X applications.

answered 07 Oct '15, 10:49

Gerald%20Combs's gravatar image

Gerald Combs ♦♦
3.3k92258
accept rate: 24%

Works like a charm, thanks Gerald!

(09 Oct '15, 06:29) TomLaBaude