This article will take you through how to install MS Teams on Fedora 36. Microsoft Teams is a proprietary business communication platform developed by Microsoft, as part of the Microsoft 365 family of products. It offers workspace chat and videoconferencing, file storage, and application integration.
How to Install MS Teams on Fedora 36
We will use the methods listed below to install MS Teams on Fedora 36;
Install MS Teams on Fedora 36 using RPM Repository
- Add MS Teams repository.
sudo tee /etc/yum.repos.d/ms-teams.repo<<EOF [Teams] name=teams baseurl=https://packages.microsoft.com/yumrepos/ms-teams enabled=1 gpgcheck=1 gpgkey=https://packages.microsoft.com/keys/microsoft.asc EOF
- Then install Teams using the following command.
sudo dnf install teams -y
Sample output
Dependencies resolved. ============================================================================ Package Architecture Version Repository Size ============================================================================ Installing: teams x86_64 1.5.00.10453-1 Teams 110 M Transaction Summary ============================================================================ Install 1 Package Total download size: 110 M Installed size: 285 M Downloading Packages: teams-1.5.00.10453-1.x86_64.rpm 409 kB/s | 110 MB 04:34 ---------------------------------------------------------------------------- Total 409 kB/s | 110 MB 04:34 teams 1.2 kB/s | 983 B 00:00 Importing GPG key 0xBE1229CF: Userid : "Microsoft (Release signing) " Fingerprint: BC52 8686 B50D 79E3 39D3 721C EB3E 94AD BE12 29CF From : https://packages.microsoft.com/keys/microsoft.asc Key imported successfully Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : teams-1.5.00.10453-1.x86_64 1/1 Running scriptlet: teams-1.5.00.10453-1.x86_64 1/1 Verifying : teams-1.5.00.10453-1.x86_64 1/1 Installed: teams-1.5.00.10453-1.x86_64 Complete!
- After the installation, MS Teams can be launched from the application menu.
Install MS Teams on Fedora 36 using RPM package
- Navigate to MS Teams download page and get the download link then download the Teams RPM package.
wget https://packages.microsoft.com/yumrepos/ms-teams/teams-1.5.00.10453-1.x86_64.rpm
- Next, run the following command to install Teams.
sudo yum install teams*.rpm
Sample output
Dependencies resolved. ============================================================================ Package Architecture Version Repository Size ============================================================================ Installing: teams x86_64 1.5.00.10453-1 @commandline 110 M Transaction Summary ============================================================================ Install 1 Package Total size: 110 M Installed size: 285 M Is this ok [y/N]: y Downloading Packages: Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : teams-1.5.00.10453-1.x86_64 1/1 Running scriptlet: teams-1.5.00.10453-1.x86_64 1/1 Verifying : teams-1.5.00.10453-1.x86_64 1/1 Installed: teams-1.5.00.10453-1.x86_64 Complete!
Uninstall MS Teams on Fedora 36
- Run the following command to remove MS Teams from Fedora.
sudo dnf autoremove teams* -y
Sample output
Dependencies resolved. ============================================================================ Package Architecture Version Repository Size ============================================================================ Removing: teams x86_64 1.5.00.10453-1 @Teams 285 M Transaction Summary ============================================================================ Remove 1 Package Freed space: 571 M Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Erasing : teams-1.5.00.10453-1.x86_64 2/2 Running scriptlet: teams-1.5.00.10453-1.x86_64 2/2 Verifying : teams-1.5.00.10453-1.x86_64 1/2 Removed: teams-1.5.00.10453-1.x86_64 Complete!
- Next, remove MS Teams repo using the following command.
sudo rm /etc/yum.repos.d/ms-teams.repo
- You have made it to the end of our article, congratulations. We have gone through how to install MS Teams on Fedora 36.
Read more about MS Teams App
Other Tutorials
Install MS Teams App on OpenSUSE