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?
-
2The 404 is clearly a website bug, even if they deprecated the older package in preference of a newer one as one of the answers says (in which case the link, obviously, should lead to the newer package). So you need to talk to their support to make sure they are aware of the problem and fix that. – Hi-Angel Mar 18 '23 at 22:06
6 Answers
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.
- 24,860
-
Do you use Wayland ? Is the list above (what works) running correctly on Wayland? – Rudy Vissers Apr 20 '23 at 13:32
-
1
-
4@Stewart it is available for Linux and Mac in addition to Windows. My employer is very Office365-centered now, so having Edge on Ubuntu makes life a whole lot easier. – matigo Feb 12 '24 at 14:01
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
- 121
-
yeah, the PWA download page has a link that is broken. i guess i will use edge? :( – qciccoretti Mar 14 '23 at 21:05
-
@qciccoretti the PWA only works in Edge, so you'll have to use Edge for that. – Thomas Ward Nov 15 '23 at 02:49
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.
-
thanks, good answer but i don't have enough karma for upvotes. i'll be using edge – qciccoretti Mar 24 '23 at 20:54
New Teams client: This one supports video conferencing and can be installed as a desktop app (see below). https://teams.cloud.microsoft
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.
- 231
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.
- 37,874
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
- 2,955