- 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.
Refer to this ica-settings-reference.pdf and make sure you set the followings:
ClientAudio=True
EnableAudioInput=True
AllowAudioInput=True
in ~/.ICAClient/wfclient.ini
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
Microsoft Teams in Citrix (Windows 10) detects and uses audio devices in Linux (Ubuntu 20.04) host.
This solved my problem, thanks!