TBS Driver Installation
TBS is a hardware manufacturer specialized on DVB devices: tuners, modulators.
To install drivers needed root privileges:
Install system utilities to build drivers from the source code:
Remove old media drivers:
Download latest driver from the official repository:
Build drivers and install it:
Install firmware for DVB adapters:
To launch installed drivers restart your system:
After reboot check adapters:
Should be listed all adapters installed in the system. For example:
If you have any issues with your DVB Adapters, please check DVB Troubleshooting
Prepare system
To install drivers needed root privileges:
sudo -s
Install system utilities to build drivers from the source code:
apt -y install \
build-essential \
patchutils \
libproc-processtable-perl \
linux-headers-$(uname -r) \
git
Remove old media drivers:
rm -rf /lib/modules/$(uname -r)/extra
rm -rf /lib/modules/$(uname -r)/kernel/drivers/media
rm -rf /lib/modules/$(uname -r)/kernel/drivers/staging/media
Install
Download latest driver from the official repository:
git clone --depth=1 https://github.com/tbsdtv/media_build.git /usr/src/media_build
git clone --depth=1 https://github.com/tbsdtv/linux_media.git -b latest /usr/src/media
Build drivers and install it:
cd /usr/src/media_build
make dir DIR=../media
make allyesconfig
make
make install
Install firmware for DVB adapters:
curl -L http://www.tbsdtv.com/download/document/linux/tbs-tuner-firmwares_v1.0.tar.bz2 | tar -C /lib/firmware/ -jxf -
Restart System
To launch installed drivers restart your system:
shutdown -r now
After reboot check adapters:
ls /dev/dvb
Should be listed all adapters installed in the system. For example:
adapter0 adapter1 adapter2 adapter3 ...
Troubleshooting
If you have any issues with your DVB Adapters, please check DVB Troubleshooting
Updated on: 28/02/2023
Thank you!