Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save neolaw84/404b5e44af0666e9da36d012b57753b3 to your computer and use it in GitHub Desktop.
Save neolaw84/404b5e44af0666e9da36d012b57753b3 to your computer and use it in GitHub Desktop.
Microsoft Teams in Citrix with Linux Host (Ubuntu 20.04) Won't Detect Audio Devices

Microsoft Teams in Citrix with Linux Host (Ubuntu 20.04) Won't Detect Audio Devices

Situation

  • Citrix (remote Windows 10 system) has Microsoft Teams Installed.
  • Citrix client is installed in Linux Host.
  • Microsoft Teams won't detect any audio device in Linux Host.

Pre-requisites

Refer to this ica-settings-reference.pdf and make sure you set the followings:

ClientAudio=True
EnableAudioInput=True
AllowAudioInput=True

in ~/.ICAClient/wfclient.ini

Action

As per superuser.com answer install libc++1-12 and libunwind-12:

curl -fsSL https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add
sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main"
sudo apt-get update
sudo apt-get install libc++1-12 libunwind-12

Result

Microsoft Teams in Citrix (Windows 10) detects and uses audio devices in Linux (Ubuntu 20.04) host.

@SeptimiuPop
Copy link

This solved my problem, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment