I had the card working perfectly, but now the Universal LNB went missing, and I don't know where the problem is.
I guess an update of TVHeadend or Debian is to blame...
I recompiled the drivers right now and installed the latest kernel on my Debian Server:
- Code: Select All Code
Linux mediaserver 6.1.0-21-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.90-1 (2024-05-03) x86_64 GNU/Linux
The script I use to automatically compile the drivers and install them is:
- Code: Select All Code
#!/bin/bash
echo "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┓"
echo "┃ ████████╗██████╗ ███████╗ ┃"
echo "┃ ╚══██╔══╝██╔══██╗██╔════╝ ┃"
echo "┃ ██║ ██████╔╝███████╗ ┃"
echo "┃ ██║ ██╔══██╗╚════██║ ┃"
echo "┃ ██║ ██████╔╝███████║ ┃"
echo "┃ ╚═╝ ╚═════╝ ╚══════╝ ┃"
echo "┡━━━━━━━━━━━━━━━━━━━━━━━━━━━┩"
echo "│ DVB-Card driver install │"
echo "└───────────┈┈┈┈────────────┘ "
# Please consult https://linuxtv.org/wiki/index.php/TBS_driver_installation for details
# Install utilities and headers correspondig to actual kernel
sudo apt-get install patchutils libproc-processtable-perl linux-headers-$(uname -r)
# Install firmware
wget http://www.tbsdtv.com/download/document/linux/tbs-tuner-firmwares_v1.0.tar.bz2
sudo tar jxvf tbs-tuner-firmwares_v1.0.tar.bz2 -C /lib/firmware/
# Install TBS' forked media drivers
mkdir tbsdriver
cd tbsdriver
git clone https://github.com/tbsdtv/media_build.git
git clone --depth=1 https://github.com/tbsdtv/linux_media.git -b latest ./media
cd media_build
make dir DIR=../media
make allyesconfig
make -j4
sudo make install
# Reboot to activate the driver
sudo reboot
The TVHeadend version I have installed:
- Code: Select All Code
tvheadend: version 4.3-2323~g73a6bd00d
I have 4 Adapters Detected:
- Code: Select All Code
[ 5.513311] TBSECP3 driver 0000:03:00.0: DVB: registering adapter 0 frontend 0 (TurboSight TBS 6522H Dual DVBS/S2x + Dual DVB-T/T2/)...
[ 5.645260] TBSECP3 driver 0000:03:00.0: DVB: registering adapter 1 frontend 0 (TurboSight TBS 6522H Dual DVBS/S2x + Dual DVB-T/T2/)...
[ 7.476266] TBSECP3 driver 0000:03:00.0: DVB: registering adapter 2 frontend 0 (TurboSight TBS 6522H Dual DVBS/S2x + Dual DVB-T/T2/)...
[ 9.260149] TBSECP3 driver 0000:03:00.0: DVB: registering adapter 3 frontend 0 (TurboSight TBS 6522H Dual DVBS/S2x + Dual DVB-T/T2/)...
But in TVHeadend only 2 of them show up:

What am I doing wrong?
Best regards