Forum Discussion
OL_Peter_K
Mar 08, 2022Brass Contributor
Microsoft Teams - Closing directly at start
Good morning! I've seen some cases here according to this problem here before, but never found a proper solution for my company. We have the issue that when a colleague of ours is trying to join to a...
dr-avas
Mar 14, 2022Copper Contributor
Please try the solution which worked for me suggested by MichaelN-3933 at (https://docs.microsoft.com/en-us/answers/questions/548771/teams-fails-to-load-on-linux.html)
Edit /usr/bin/teams and modify the line:
nohup "$TEAMS_PATH" "$@" --disable-namespace-sandbox --disable-setuid-sandbox > "$TEAMS_LOGS/teams-startup.log" 2>&1 &
to include the new option --disable-seccomp-filter-sandbox:
nohup "$TEAMS_PATH" "$@" --disable-seccomp-filter-sandbox --disable-namespace-sandbox --disable-setuid-sandbox > "$TEAMS_LOGS/teams-startup.log" 2>&1 &