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 |
One Answer:
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:
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 Combs ♦♦ |
Works like a charm, thanks Gerald!