-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing dependencies in installation script for Debian/Ubuntu #102
Comments
Hi there, I faced the same issue today. Basically, I changed in line 23: and in line 40: Now it's working for me on Ubuntu 21.04 |
Hello guys, |
Two ideas :
|
Can you try this new branch that we have updated Wireshark to 3.4. |
Originally, this issue was about inconveniences in the output of the script and missing packages. This doesn't seem to be fixed in branch dev-6.0. The above comments refer to downloading Wireshark sources, however, which is independent of the other problems. |
Installing missed package Thought there is another one:
|
Versions
Description
We were trying to set up
mobileinsight-core
usinginstall-ubuntu.sh
on a fresh Debian 10 install (and reproduced the issue on a fresh Xubuntu 20.04). Runningcmake
on line 47 failed. When tracking down the cause, we noticed three problems:cmake
command and is a bit misleading, one could think that thecmake
binary is being looked for on the wrong path. Could be changed to:"Error when executing 'cmake -DBUILD_wireshark=OFF .' in ${WIRESHARK_SRC_PATH}/"
cmake
is suppressed (i.e., redirected to/dev/null
, includingstderr
) which makes troubleshooting harder than it has to be. Why is this done actually, the other commands log to the standard outputs as well?cmake
,build-essential
,git
, andlibgcrypt20-dev
(could be added to line 35)While the last point is the main problem, it might be worth to consider fixing the others as well.
Logs
The text was updated successfully, but these errors were encountered: