setup/doc/ms-teams.md

37 lines
662 B
Markdown
Raw Permalink Normal View History

2022-02-12 17:47:04 +01:00
# Setup MS Teams
2022-03-17 22:12:22 +01:00
* update your APT cache using
```
sudo apt update
```
2022-02-12 17:47:04 +01:00
* install curl using
```
sudo apt install curl --no-install-recommends
```
* import the GPG key using
```
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
```
* import the official MS Teams repository using
```
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/ms-teams stable main" > /etc/apt/sources.list.d/teams.list'
```
* install MS Teams using
```
sudo apt install teams --no-install-recommends
```
* verify the installation by checking the APT-CACHE Policy using
```
sudo apt-cache policy teams
```
* launch teams
```
teams
```