13

I want to install microsoft teams for Ubuntu 22.04 LTS so I can join a video conference. Unfortanetly, I am getting a 404 from the deb download page. I don't want to install the unofficial client from snap for security concerns. Does anyone have this working?

6 Answers6

10

So long as you are not going to be doing any complex screen sharing, I have found the website (teams.microsoft.com) running in Edge is more reliable, uses less memory, and is generally faster than the locally installed clients. I have been doing this for a few years on systems running 20.04 and 22.04 without issues.

What works:

  • chat
  • file sharing
  • audio calls
  • video calls (with or without background blurring)
  • sharing an entire display (with sound)

What doesn't work:

  • sharing a single application window

So long as this is something you can live with then the browser and website may be the way to go.

matigo
  • 24,752
  • 7
  • 50
  • 79
6

Microsoft has decided to deprecate the native Teams application. It has not seen development in quite a while and is missing quite a lot of newer features. The official solution moving forward is to use the PWA application version of teams. It isn't ideal but is completely usable. https://techcommunity.microsoft.com/t5/microsoft-teams/end-of-the-road-for-teams-linux-desktop-client/m-p/3630968

smjklake
  • 121
3

It seems there's a problem with the distribution of Microsoft Teams for Linux, I've seen more people complaining about this here on AskUbuntu. And also saw it on twitter. It's very likely that as was already pointed out on this thread discontinuation of the "native" package was already carried out, but they forgot to remove the pages that lead to the download.

As others pointed out you can use Teams on the Web Browser.

1
  1. New Teams client: This one supports video conferencing and can be installed as a desktop app (see below). https://teams.cloud.microsoft

  2. Classic Teams client: Deprecated / Not recommended : https://teams.microsoft.com

More Details

*NB: Classic Teams client - this will be removed soon, so you really should use the new one

New Teams client - this can be installed as a desktop app (PWA) when using a Chromium browser (eg Google Chrome). See here for instructions: https://www.omglinux.com/microsoft-teams-pwa-now-available-on-linux/

Snap + Flatpak packages - I cannot recommend these for corporate use as they are currently not from a verified source.

Bastion
  • 231
  • 1
  • 2
  • 9
0

As other answers correctly state, Microsoft has discontinued its Linux Teams client, but in its place it has added features to its web-based client that were previously missing.

I am writing this answer to suggest the Teams for Linux app by Ismael Martinez on Flathub which is a community-made wrapper that uses Electron to present the web based client (also known as the PWA client) as if it's its own app. It's regularly updated and works well for me, including things like minimizing to to tray and having notifications.

thomasrutter
  • 37,804
0

You can install this teams-for-linux package by typing these commands :

sudo mkdir -p /etc/apt/keyrings
sudo wget -qO /etc/apt/keyrings/teams-for-linux.asc https://repo.teamsforlinux.de/teams-for-linux.asc
echo "deb [signed-by=/etc/apt/keyrings/teams-for-linux.asc arch=$(dpkg --print-architecture)] https://repo.teamsforlinux.de/debian/ stable main" | sudo tee /etc/apt/sources.list.d/teams-for-linux-packages.list
sudo apt update
sudo apt install teams-for-linux
SebMa
  • 2,927
  • 5
  • 35
  • 47