1

i have a teamspeak 2 installed on ubuntu 18.04.1.

When i started it i realized that is use oss /dev/dsp device.

Picture of settings in ts.

So, when i try to padsp teamspeak.

I have breaking voice, recording lags and bad sound quality(especially when i load pc hard(flight-sim). Any ideas how to make it work without lags and freezes? TeamSpeak is very important part of online-flight so i wanna ATC to hear me load&clear

1 Answers1

0

Solved! TS2 works perfectly with osspd emulation.

To install we need to build proxy daemon from source:

cd /tmp
wget http://downloads.sourceforge.net/project/osspd/ossp-1.3.2.tar.gz
tar -zxvf ossp-1.3.2.tar.gz
cd ossp-1.3.2/
make
sudo make install

If you get an error like that

No package 'fuse' found
gcc -Wall   -o osspd osspd.c  -L. -lossp 
osspd.c:14:27: fatal error: cuse_lowlevel.h: No such file or directory
compilation terminated.

Then you have to install libfuse-dev

sudo apt-get install libfuse-dev

Next, make up from downloaded source:

cd ossp-1.3.2/
make
sudo make install

Ready!

To enable that type in terminal

sudo /usr/local/sbin/osspd
sudo chmod o+rw /dev/dsp /dev/adsp /dev/cuse /dev/mixer 

Found from here