Sample Header Ad - 728x90

Unix & Linux Stack Exchange

Q&A for users of Linux, FreeBSD and other Unix-like operating systems

Latest Questions

1 votes
0 answers
66 views
How to make Microsoft Teams use a virtual microphone
My goal is to alter my voice in a particular way and redirect it to MS Teams. I managed to pipe my voice from my headphones microphone to a virtual microphone named `wh40k` like this: `parec -d $PHYSICAL_MIC | sox $FILTERS | pacat -d $VIRTUAL_MIC`. In detail, this is my code: VIRTUAL_MIC="wh40k" # H...
My goal is to alter my voice in a particular way and redirect it to MS Teams. I managed to pipe my voice from my headphones microphone to a virtual microphone named wh40k like this: parec -d $PHYSICAL_MIC | sox $FILTERS | pacat -d $VIRTUAL_MIC. In detail, this is my code: VIRTUAL_MIC="wh40k" # Hard-coded headphones microphone name which I got from pactl list PHYSICAL_MIC="alsa_output.pci-0000_00_1f.3-platform-skl_hda_dsp_generic.HiFi__Headphones__sink" # Check for required software: quit if any not found for CMD in parec sox pacat; do if ! command -v "$CMD" &>/dev/null; then echo "Error: $CMD not found.." exit 1 fi done cleanup() { echo "Removing virtual microphone $VIRTUAL_MIC..." pactl unload-module "$MODULE_ID" exit 0 } if ! pactl list sinks short | grep -q "$VIRTUAL_MIC"; then echo "Creating virtual microphone '$VIRTUAL_MIC'..." MODULE_ID=$(pactl load-module module-null-sink \ sink_name=$VIRTUAL_MIC \ sink_properties=device.description="$VIRTUAL_MIC") if [[ -z "$MODULE_ID" ]]; then echo "Error: could not create virtual microphone '$VIRTUAL_MIC'." exit 1 fi else echo "Virtual microphone '$VIRTUAL_MIC' already exists." fi trap cleanup INT TERM echo -e "\nConfigurated sinks:" pactl list sinks short echo -e "\nConfigured sources (monitor):" pactl list sources short echo -e "\nConfiguring '$VIRTUAL_MIC' audio pipeline..." # $PITCH and other filters below are vars like "pitch -750" parec -d "$PHYSICAL_MIC" --raw --format=s16le --rate=44100 --channels=1 | \ sox -t raw -r 44100 -e signed -b 16 -c 1 - -t raw - \ $PITCH $OVERDRIVE $GAIN $REVERB $EQUALIZER $BASS $TREBLE $CHORUS $ECHO | \ pacat --raw --device="$VIRTUAL_MIC".monitor I can confirm that parec | sox works because I tested it with parec | sox | pacat and sox filters were correctly applied. Now I can't use wh40k virt mic on MS Teams: when I select MS Teams > Settings > Devices > Microphone: Monitor of wh40k I can't hear my voice from the Teams test call. Any clue on how could I troubleshoot this? My versions: - MS Teams 1.5.00.23861 (64-bit) - Linux Mint 21 Kernel - 6.8.0-40-generic - pipewire 1.2.7
elmazzun (169 rep)
Jan 2, 2025, 09:59 PM • Last activity: Jan 5, 2025, 01:21 PM
0 votes
2 answers
2589 views
Can't open Microsoft Teams' files tab
When I try to open the file tab in any team in Microsoft Teams, it won't load. For the application and Chromium browser, it says: `There was a problem reaching this app` and for Firefox it says: `Something went wrong PrefetchFailure (RenderListDataAsStream (NoConnection))`. As far as I know, this ap...
When I try to open the file tab in any team in Microsoft Teams, it won't load. For the application and Chromium browser, it says: There was a problem reaching this app and for Firefox it says: Something went wrong PrefetchFailure (RenderListDataAsStream (NoConnection)). As far as I know, this applies only to the file tab and nothing else. (File tab refers to MS Teams > Teams > (any team) > (any channel) > Files) I am using Arch Linux.
Siro (1 rep)
Apr 25, 2023, 07:19 AM • Last activity: Mar 16, 2024, 01:02 PM
2 votes
2 answers
3223 views
Arch Linux: Webcam Virtual Background Setup
I have tried various tools like fakecam and blog posts like this (https://elder.dev/posts/open-source-virtual-background/), however, I just can't get anything to run on my setup (Arch Linux). Can someone help me out and write me a how-to for dummies on how to get a virtual background or blurred back...
I have tried various tools like fakecam and blog posts like this (https://elder.dev/posts/open-source-virtual-background/) , however, I just can't get anything to run on my setup (Arch Linux). Can someone help me out and write me a how-to for dummies on how to get a virtual background or blurred background for conferencing tools like Skype, Zoom, Teams on Arch Linux?
NJones (121 rep)
Jan 20, 2021, 10:53 AM • Last activity: Mar 14, 2024, 03:08 AM
0 votes
1 answers
492 views
How to join a Microsoft Teams meeting with video just from the Meeting ID and passcode?
There seem to be different kinds of Microsoft Teams links. For example, when I generate a link using the Teams For Linux app, they're of the form: https://teams.live.com/meet/55366767345647 But some invitations are more like: > Microsoft Teams meeting > > Join on your computer, mobile app or room de...
There seem to be different kinds of Microsoft Teams links. For example, when I generate a link using the Teams For Linux app, they're of the form: https://teams.live.com/meet/55366767345647 But some invitations are more like: > Microsoft Teams meeting > > Join on your computer, mobile app or room device > > Click here to join the meeting > > Meeting ID: 123 456 411 131 Passcode: CdWX5S > > Download Teams | Join on the web > > Or call in (audio only) > > +1 437-123-7890,,562462542# Canada, Toronto > > Phone Conference ID: 123 678 891# > > Find a local number | Reset PIN Where the link is like: https://teams.microsoft.com/l/meetup-join/19%3ameeting_MmE2dghgjthggfgftdgk4NTEx%40thread.v2/0?context=%7b%22Tid%22%3a%2284fa96df-e750-41d3-81b1-850387a4aa42%22%2c%22Oid%22%3a%2221d05281-6ac1-49f3-b759-5gfdsgfgfgfsfh82c%22%7d and so the question is how to join through the above link with video. Because I just get caught in a loop of logging in and starting the app without ever joining the meeting itself. Can I enter this meeting ID into the Teams For Linux app somehow? I see no such option. System info: nicholas@mordor:~$ nicholas@mordor:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04 LTS Release: 22.04 Codename: jammy nicholas@mordor:~$ nicholas@mordor:~$ chromium --version Chromium 112.0.5615.49 snap nicholas@mordor:~$ Can I not simply enter the meeting ID somewhere? teams There's no such option readily apparent.
Nicholas Saunders (565 rep)
May 8, 2023, 04:07 PM • Last activity: May 8, 2023, 07:44 PM
0 votes
0 answers
30 views
How to configure Mattermost?
I would like to use Mattermost as an alternative on Microsoft teams on Linux. How can I configure it as it says that I have to enter my server details, URL and Display name. Do I have to build my own server? The proble with Teams is that I can't hear customer's voice so I try to replace Teams with M...
I would like to use Mattermost as an alternative on Microsoft teams on Linux. How can I configure it as it says that I have to enter my server details, URL and Display name. Do I have to build my own server? The proble with Teams is that I can't hear customer's voice so I try to replace Teams with Mattermost.
guest (1 rep)
Mar 16, 2023, 08:34 AM • Last activity: Mar 16, 2023, 05:27 PM
1 votes
0 answers
172 views
MS Teams protocol links are automatically opened with web app in Chrome
I would like to use the standalone MS Teams Linux App to open links, for some reason when I click on them and the web app automatically starts. The button "Join on the Teams app" doesn't work. [![enter image description here][1]][1] [1]: https://i.sstatic.net/nWh8v.png
I would like to use the standalone MS Teams Linux App to open links, for some reason when I click on them and the web app automatically starts. The button "Join on the Teams app" doesn't work. enter image description here
alfredopacino (183 rep)
Mar 15, 2023, 05:23 PM • Last activity: Mar 16, 2023, 10:42 AM
1 votes
1 answers
1530 views
How can I remove "Monitor of Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo" from pulseaudio forever?
I have periodic problems when web browser for some reason selects this "Monitor of Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo" input source as input. E.g. today it happened with unholy combination of microsoft teams and firefox. How can I delete this device (sink? source?) forever...
I have periodic problems when web browser for some reason selects this "Monitor of Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo" input source as input. E.g. today it happened with unholy combination of microsoft teams and firefox. How can I delete this device (sink? source?) forever? I get no benefit from its existence. EDIT: I don't know why msteams did pick up this source. Might be because one tab temporarily was "holding" the proper audio source (microphone) Anyway, I want to make it gone. My logic is simple, if it's impossible to select "Monitor of Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo" in firefox, then I'll never have this problem. I guess I can configure firefox to ignore it, but could there be a pulseaudio solution? I'm running xubuntu 20.04. In pactl list the device looks like this
Source #0
	State: IDLE
	Name: alsa_output.pci-0000_05_00.6.analog-stereo.monitor
	Description: Monitor of Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo
	Driver: module-alsa-card.c
	Sample Specification: s16le 2ch 44100Hz
	Channel Map: front-left,front-right
	Owner Module: 8
	Mute: no
	Volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
	        balance 0.00
	Base Volume: 65536 / 100% / 0.00 dB
	Monitor of Sink: alsa_output.pci-0000_05_00.6.analog-stereo
	Latency: 0 usec, configured 1999818 usec
	Flags: DECIBEL_VOLUME LATENCY 
	Properties:
		device.description = "Monitor of Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo"
		device.class = "monitor"
		alsa.card = "1"
		alsa.card_name = "HD-Audio Generic"
		alsa.long_card_name = "HD-Audio Generic at 0xd04c0000 irq 84"
		alsa.driver_name = "snd_hda_intel"
		device.bus_path = "pci-0000:05:00.6"
		sysfs.path = "/devices/pci0000:00/0000:00:08.1/0000:05:00.6/sound/card1"
		device.bus = "pci"
		device.vendor.id = "1022"
		device.vendor.name = "Advanced Micro Devices, Inc. [AMD]"
		device.product.id = "15e3"
		device.product.name = "Family 17h (Models 10h-1fh) HD Audio Controller"
		device.string = "1"
		module-udev-detect.discovered = "1"
		device.icon_name = "audio-card-pci"
	Formats:
		pcm
EDIT2 Please don't tell me to set "Family 17h (Models 10h-1fh) HD Audio Controller Analog Stereo" to output only. Because, even if this helps with removing "Monitor of ..." sound source, I will lose access to my microphone.
stackoverflow hater (41 rep)
Feb 21, 2023, 10:20 AM • Last activity: Feb 23, 2023, 02:24 PM
1 votes
1 answers
4411 views
Trouble in removing ms teams application from Ubuntu 20.04
I used the command below to remove teams permanently: ``` sudo apt purge teams ``` However, when I check with `sudo apt list | grep teams` I see the app names below: (base) user@user-pc:~$ sudo apt list | grep teams WARNING: apt does not have a stable CLI interface. Use with caution in scripts. pyth...
I used the command below to remove teams permanently:
sudo apt purge teams
However, when I check with sudo apt list | grep teams I see the app names below: (base) user@user-pc:~$ sudo apt list | grep teams WARNING: apt does not have a stable CLI interface. Use with caution in scripts. python3-openid-teams/focal,focal 1.2-2 all t1-teams/focal,focal 4.17 all teams-insiders/stable 1.5.00.10453 amd64 teams/stable 1.5.00.10453 amd64 When I attempt to remove those apps, it can't find them. Also, when I reinstall Teams, it remembers my user name from the previous login. This indicates that there are still some config or log files somewhere. How can I completely remove the Microsoft Teams app (with all config files and preferences) from my Ubuntu OS?
user534495 (11 rep)
Jul 20, 2022, 11:24 AM • Last activity: Feb 21, 2023, 04:27 PM
0 votes
2 answers
1394 views
Join Microsoft Teams with Chromium
For the work I need to join Microsoft Teams sessions. I used to run a Manjaro installation, on which it worked to join the sessions with the Chromium browser. Now I have switched to Fedora, where it doesn't work anymore I just get a message "Sorry, we couldn't connect you. [Retry] [Dismiss]". Someho...
For the work I need to join Microsoft Teams sessions. I used to run a Manjaro installation, on which it worked to join the sessions with the Chromium browser. Now I have switched to Fedora, where it doesn't work anymore I just get a message "Sorry, we couldn't connect you. [Retry] [Dismiss]". Somehow I suspect that the issue is somewhere in the pipewire configuration. So I have setup Manjaro in a (VirtualBox) VM and as expected Teams works in Chromium on the Manjaro VM. To find what is causing the trouble on Fedora I have now in total 3 VMs with Debian, Manjaro, and Ubuntu to investigate the difference in the setup. Teams in Chromium not running on: - Fedora: Chromium Version 102.0.5005.115 (Official Build) Fedora Project (64-bit) - Debian: Chromium Version 103.0.5060.114 (Official Build) built on Debian bookworm/sid, running on Debian bookworm/sid (64-bit) Teams in Chromium running: - Manjaro: Chromium Version 103.0.5060.114 (Offizieller Build) Arch Linux (64-Bit) - Ubuntu: Chromium Version 103.0.5060.114 (Official Build) snap (64-bit) Looking at the packages in Debian and Ubuntu, filtering for pulseaudio and pipewire, there is no difference, both of the systems have: gstreamer1.0-pulseaudio, libcanberra-pulse, libpulse-mainloop-glib0, libpulse0, libpulsedsp, pulseaudio-module-bluetooth, pulseaudio-utils, pulseaudio, gstreamer1.0-pipewire, libpipewire-0.3-0, libpipewire-0.3-common, libpipewire-0.3-modules, pipewire-bin/testing, pipewire-media-session, pipewire. Can anyone provide some hint on how to debug this situation or in general pipewire setups?
white_gecko (241 rep)
Jul 20, 2022, 11:40 AM • Last activity: Feb 3, 2023, 11:52 AM
0 votes
0 answers
225 views
Ubuntu does not remember my microsoft account
My computer (Ubuntu 22.04.1 LTS), does not remember my business Microsoft account and I need to Login and 2FA each time. Is there a way to remember my Microsoft account?
My computer (Ubuntu 22.04.1 LTS), does not remember my business Microsoft account and I need to Login and 2FA each time. Is there a way to remember my Microsoft account?
csandreas1 (101 rep)
Nov 20, 2022, 03:33 PM
0 votes
0 answers
829 views
Microsoft Teams not sharing screen with Ubuntu 22.04
I tried the solution to disable Wayland in custom.config, received X11 as the server with a restart, not happening. I am using the teams from Microsoft - latest version for X64 system. Screen sharing not happening. With Wayland enabled, using Teams with the latest edge browser, only tabs can be shar...
I tried the solution to disable Wayland in custom.config, received X11 as the server with a restart, not happening. I am using the teams from Microsoft - latest version for X64 system. Screen sharing not happening. With Wayland enabled, using Teams with the latest edge browser, only tabs can be share, selecting options like window, entire screen does not. Am I missing anything? Thanks SKB
skbose (1 rep)
Nov 18, 2022, 07:56 AM • Last activity: Nov 18, 2022, 07:58 PM
1 votes
0 answers
387 views
microsoft teams microphone not working
i am using arch Linux. my mic runs perfectly well on all my apps ( zoom, ...) but it doesn't seem to be working using Microsoft teams. either the web app(login using Firefox , chrome) or even when installing teams from the AUR. i also didn't found lots of people having the same issue on the arch wik...
i am using arch Linux. my mic runs perfectly well on all my apps ( zoom, ...) but it doesn't seem to be working using Microsoft teams. either the web app(login using Firefox , chrome) or even when installing teams from the AUR. i also didn't found lots of people having the same issue on the arch wiki so i'm posting here for further help. i really appreciate it if someone helps me with that, i'm new to arch. i am using lenovo ideapad 330 . i have installed teams from the aur repo
https://aur.archlinux.org/teams.git 
there is no errors while running from the terminal the command is :
it opens normally. in the device settings in teams the built in audio and mic are selected.
Charbel Eid (87 rep)
Sep 22, 2022, 01:00 PM • Last activity: Nov 9, 2022, 08:13 PM
2 votes
0 answers
609 views
Ubuntu 20.04 electron based apps (slack, teams, chrome) crashed after tmpfs reached 100%
I'm observing similar issues mentioned here https://unix.stackexchange.com/questions/79364/operation-in-dev-shm-causes-overflow I've 32GB, Ubuntu 20.04, Kernel 5.14, AMD RYZEN, 25GB of swap. >Linux FP-LSC0727L 5.14.0-1048-oem #55-Ubuntu SMP Mon Aug 8 14:58:10 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux...
I'm observing similar issues mentioned here https://unix.stackexchange.com/questions/79364/operation-in-dev-shm-causes-overflow I've 32GB, Ubuntu 20.04, Kernel 5.14, AMD RYZEN, 25GB of swap. >Linux FP-LSC0727L 5.14.0-1048-oem #55-Ubuntu SMP Mon Aug 8 14:58:10 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux > tmpfs 6,0G 6,0G 0 100% /dev/shm After reaching 100% of tmpfs all electron based apps crashed. And I am not able to run it again, but when resize the /dev/shm > sudo mount -o remount,size=10G /dev/shm I can get it back to work for a while, until the additional mem got used. I've tried to downgrade kernel to 5.13 and upgrade to >uname -a Linux FP-LSC0727L 5.15.0-46-generic #49~20.04.1-Ubuntu SMP Thu Aug 4 19:15:44 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux It didn't helped at all. The logs from slack when it crashed > /var/log/syslog seems like >Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.759453:ERROR:command_buffer_proxy_impl.cc(94)] ContextResult::kFatalFailure: AllocateAndMapSharedMemory failed Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.759551:ERROR:broker_posix.cc(46)] Received unexpected number of handles Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.759581:ERROR:command_buffer_proxy_impl.cc(94)] ContextResult::kFatalFailure: AllocateAndMapSharedMemory failed Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.759666:ERROR:broker_posix.cc(46)] Received unexpected number of handles Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.759694:ERROR:command_buffer_proxy_impl.cc(94)] ContextResult::kFatalFailure: AllocateAndMapSharedMemory failed Aug 23 11:21:53 FP-LSC0727L slack.desktop: ...MORE SIMILAR LINES... Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.761103:ERROR:command_buffer_proxy_impl.cc(94)] ContextResult::kFatalFailure: AllocateAndMapSharedMemory failed Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.761230:ERROR:broker_posix.cc(46)] Received unexpected number of handles Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.761275:ERROR:command_buffer_proxy_impl.cc(94)] ContextResult::kFatalFailure: AllocateAndMapSharedMemory failed Aug 23 11:21:53 FP-LSC0727L slack.desktop: [4357:0823/112153.761389:ERROR:broker_posix.cc(46)] Received unexpected number of handles > google-chrome -v [28114:28114:0823/120623.888519:ERROR:platform_shared_memory_region_posix.cc(217)] Creating shared memory in /dev/shm/.com.google.Chrome.XQhry3 failed: No space left on device (28) [28114:28153:0823/120623.888743:ERROR:platform_shared_memory_region_posix.cc(217)] Creating shared memory in /dev/shm/.com.google.Chrome.vldHe2 failed: No space left on device (28) [28114:28114:0823/120623.888758:ERROR:platform_shared_memory_region_posix.cc(217)] Creating shared memory in /dev/shm/.com.google.Chrome.1QE8A4 failed: No space left on device (28) Trace/breakpoint trap (core dumped) slack 4.27.156 64 latest/stable slack✓ -
Paweł Henek (21 rep)
Aug 23, 2022, 10:00 AM • Last activity: Aug 23, 2022, 10:29 AM
3 votes
3 answers
3105 views
Run multiple instances of Microsoft Teams app
I have multiple accounts on Microsoft Teams which I have to access. On my Android mobile the app allows me to add multiple users and we can manage all the messages from there. But in Linux the Teams client cannot add multiple users Is there any way I can do this in Linux? Even if it's...
I have multiple accounts on Microsoft Teams which I have to access. On my Android mobile the app allows me to add multiple users and we can manage all the messages from there. But in Linux the Teams client cannot add multiple users Is there any way I can do this in Linux? Even if it's possible to run multiple instance of Teams in isolation?
Santhosh (409 rep)
Mar 25, 2022, 04:02 AM • Last activity: Jul 2, 2022, 01:32 PM
14 votes
4 answers
13711 views
How to blur webcam background in Microsoft Teams
I am currently using Teams for a master and I would like to blur my backgrounds, do you know any way to do it?
I am currently using Teams for a master and I would like to blur my backgrounds, do you know any way to do it?
Alessio_110 (411 rep)
Jan 16, 2021, 08:25 AM • Last activity: Feb 15, 2022, 09:58 AM
0 votes
1 answers
72 views
Help in interpreting chkrootkit analysis for MS Teams package
I run from time to time a `chkrootkit` to make sure my install does not get infected. Today I ran it while MS team was on (I need to use it for my classes). Here is what I found: ``` Checking `chkutmp'... The tty of the following user process(es) were not found in /var/run/utmp ! ! RUID PID TTY CMD...
I run from time to time a chkrootkit to make sure my install does not get infected. Today I ran it while MS team was on (I need to use it for my classes). Here is what I found:
Checking `chkutmp'...
The tty of the following user process(es) were not found in /var/run/utmp !
! RUID          PID TTY    CMD

! ted-code-mitigations
0 -id=6  --shared-files=v8_snapshot_data:100 --msteams-process-type=notificationsManager
! ent-id=4
0 n-frame-before-activation --no-v8-untrusted-code-mitigations --shared-files=v8_snapshot_data:100 --msteams-process-type=mainWindow
! tron-site-instance-overrides
0 derer  --num-raster-threads=2 --enable-main-frame-before-activation --renderer-client-id=9 --no-v8-untrusted-code-mitigations --shared-files=v8_snapshot_data:100 --msteams-process-type=experience-renderer
! =v8_snapshot_data:100
0 usted-code-mitigations --msteams-process-type=pluginHost
Any expert analysis/advice beyond "Don't use this Microsoft/evil corp. software"?
matemathieu (1 rep)
Oct 26, 2021, 08:52 AM • Last activity: Oct 26, 2021, 11:18 AM
0 votes
1 answers
469 views
Microsoft Team 100% CPU usage
Occasionally Microsoft Teams will decide to continuously utilize 100% CPU of one core and not stop unless it is killed. Is there a better solution to this problem than to kill it and hope it won't do it again soon?
Occasionally Microsoft Teams will decide to continuously utilize 100% CPU of one core and not stop unless it is killed. Is there a better solution to this problem than to kill it and hope it won't do it again soon?
Ocean (278 rep)
Sep 17, 2021, 08:55 AM • Last activity: Sep 17, 2021, 03:24 PM
2 votes
1 answers
333 views
Skip the browser page when opening https URIs for Zoom, Teams, and other native apps
Android has a convenient feature: certain https links that have associated local apps installed are opened directly in these apps, skipping the browser page. How do I achieve this in Linux? I have Zoom installed on my computer. When someone shares a `https://zoom.us/j/NNNN` link with me and I click...
Android has a convenient feature: certain https links that have associated local apps installed are opened directly in these apps, skipping the browser page. How do I achieve this in Linux? I have Zoom installed on my computer. When someone shares a https://zoom.us/j/NNNN link with me and I click it in e.g. Thunderbird, this link is passed to xdg-open. Xdg-open looks at the URI schema "https" and starts the default browser. The browser navigates to this URI and displays a page whose only function is to transform this URI into a different one: zoommtg://zoom.us/join?confno=NNNN. This new URI is in turn passed to xdg-open who launches Zoom. I could not find a ready-made solution so far. I imagine a script that looks beyond the URI schema. For example, if it receives a parameter starting with https://zoom.us/j/ , it ensures that a handler for zoommtg is configured, in which case it rewrites the URI by itself and passes it to the handler. There is supposedly a limited number of popular schemes, so such a script should be relatively simple to maintain. The script could be used either as a wrapper for xdg-open or as a handler for https links. At best I would appreciate a link to an existing software which does that. I’d hate to write a script only for my personal use. If such software doesn’t exist so far, I welcome advice on implementing this in a portable way with a goal to publish it.
Tom Adler (181 rep)
Jul 21, 2021, 11:44 AM • Last activity: Jul 27, 2021, 01:02 PM
0 votes
1 answers
305 views
MS teams makes the whole GUI stall: GpuWatchdog segfault
Since I use microsoft teams on my Debian buster machine, I get a GUI freeze sometimes: The mouse pointer can still be moved on the screen, but no visible feedback on clicks or keyboard presses. Also no switching to a console with ctrl alt F1 I could not help myself other then `ssh`ing to the machine...
Since I use microsoft teams on my Debian buster machine, I get a GUI freeze sometimes: The mouse pointer can still be moved on the screen, but no visible feedback on clicks or keyboard presses. Also no switching to a console with ctrlaltF1 I could not help myself other then sshing to the machine to restart Xorg. The dmesg shows me fingerprints of teams, but I guess the deeper problem must the in the nouveau GPU driver? [ 4918.083079] show_signal_msg: 7 callbacks suppressed [ 4918.083082] GpuWatchdog: segfault at 0 ip 000055dcd609b006 sp 00007f5a8f043490 error 6 in teams[55dcd2705000+5fbe000] [ 4918.083087] Code: 89 de e8 4d 0e 71 ff 80 7d cf 00 79 09 48 8b 7d b8 e8 1e 45 ce fe 41 8b 84 24 e0 00 00 00 89 45 b8 48 8d 7d b8 e8 ea f0 66 fc 04 25 00 00 00 00 37 13 00 00 48 83 c4 38 5b 41 5c 41 5d 41 5e [ 5006.078739] traps: Watchdog trap invalid opcode ip:555c23f287de sp:7f77fb7fd6f0 error:0 in teams[555c23dba000+5fbe000] For now I deactivated GPU acceleration in MS teams, but would you recommend switching to NVIDIA driver instead of nouveau in this case?
Philippos (13680 rep)
Jul 16, 2021, 01:11 PM • Last activity: Jul 16, 2021, 01:24 PM
-1 votes
1 answers
800 views
Microsoft Teams freeze on Ubuntu 16.04
I am trying to run Microsoft `teams` on an Ubuntu 16.04 LTS Desktop. However, every time I try to launch the program, the entire system freezes and becomes completely unresponsive. I have to perform a hard shutdown by holding the power button. How can I fix this?
I am trying to run Microsoft teams on an Ubuntu 16.04 LTS Desktop. However, every time I try to launch the program, the entire system freezes and becomes completely unresponsive. I have to perform a hard shutdown by holding the power button. How can I fix this?
Panki (7162 rep)
Jan 15, 2021, 11:54 AM • Last activity: Jan 15, 2021, 11:55 AM
Showing page 1 of 20 total questions