We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Use default configuration with Qt5.
Add deploy step to run configuration with:
Command: sudo Arguments: -A setcap cap_net_raw,cap_net_admin+eip iptvutils
Run this to get askpass to work correctly with sudo:
sudo bash -c 'echo "Path askpass /usr/bin/ssh-askpass" >> /etc/sudo.conf'
To make all this work when running in debugger, gdb (and bash which is called from gdb) need to have the same capabilities:
sudo setcap cap_net_admin,cap_net_raw+eip $(readlink -f $(which gdb)) sudo setcap cap_net_admin,cap_net_raw+eip $(readlink -f $(which bash))
One might think that we shouldn't have to set all the capability bits (who inherits whom?), but that doesn't work.
See: https://wiki.ubuntu.com/Debug%20Symbol%20Packages