Forum Discussion
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 &