8

I am using the official MS Teams client (Linux DEB 64-bit [1.5.00.23861]) on Ubuntu 22.04.1 LTS.

I am having the following issue: I open Teams, go to the Calendar icon, and then click on the "New Meeting" button located in the top right hand corner. A pop-up window appears, like so: enter image description here

This to me looks like the it is zoomed in uncontrollably. However, I cannot get it to open normally. I raised a ticket with Microsoft, they called me back and one of their "engineers" had remote access to my machine to "diagnose" the cause. He advised me to purge Teams from my system, including cache and config files and reinstall it. I advise him that I had already done this, twice, but he insisted we do it again, so we did... and still no change.

He next informed me that he would send me the latest package to install. He sent me a Windows binary! I informed him again, that I used Ubuntu, so he told me it should still work! After some back and forth I managed to persuade him that Ubuntu will not run a .exe file (not directly at least).

I have run these commands:

 rm -r ~/.config/Microsoft/
 rm -r ~/.config/'Microsoft Teams - Preview'
 rm -r ~/.config/teams/
 rm -r ~/.config/'teams (deleted)'/
 sudo apt remove --purge teams

I reinstalled the Debian package that I downloaded directly from the Microsoft Website. It all works absolutely fine, apart from the issue with the New Meeting button presenting me with the window as shown in the image. I can add a title and hit return, but nothing happens. CTRL+ and CTRL mouse scroll etc. do very little, I just see enlarged icons.

I've searched high and low. Any help with this issue would be much appreciated. Incidentally, everything still works absolutely fine if I use Teams directly in the Web browser.

  • 1
    I’ve generally stuck with Teams in the browser (Edge, specifically) because it consumes about half the memory of the .deb. The only time I do use the dedicated app is when I am leading a call where I need to demo stuff and show a screen. The .deb is just too buggy for everyday use – matigo Jan 27 '23 at 23:21

3 Answers3

2

For anyone interested, Microsoft has killed the Teams application. You can now only use the PWA version of Teams which gets integrated with the OS as just a browser instance. More info here

  • 1
    Microsoft need to update their documentation! - it still steers Linux users to install from the ms-teams repository, which no longer contains the teams package; and the manual deb download link is 404ing. – Sam Morris Feb 21 '23 at 12:23
0

My teams client has the config in a different location. Try removing ~/.config/Microsoft/Microsoft Teams/

rm -R ~/.config/Microsoft/Microsoft\ Teams/

This fix removes all your config, so you will need to reset any preferences, as well as log back in. It appears to be temporary, something trips up and the 'Add Meeting' will have the zoomed in view again.

I think this is better than forcing you to a Browser client or telling you MS doesn't support it.

0

For me, first changing Teams setting for GPU acceleration (I disabled it as it seems that it could cause the issue), and then:

rm -R ~/.config/Microsoft/Microsoft\ Teams/
sudo killall teams

Then started Teams again and logged back in. It fixed the issue. GPU acceleration setting is preserved during these steps as it's obviously saved elsewhere.

Thank you!