Moderator Control Panel ]

Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby mrtrigger » Mon Sep 16, 2013 2:11 pm

Hi,
after upgrading Ubuntu to latest kernel 3.8 the TBS 6981 card isn't recognized at startup. It's listed as a PCI-device (using lspci -nnk) but there is no mention of it in dmesg and /dev/dvb/ isn't created. I'm using the latest drivers from the website build using the following steps.

Code: Select All Code
> sudo make distclean
> sudo ./v4l/tbs-x86_64.sh
> sudo make
> sudo make install


Am I compiling against kernel 3.x? Shouldn't there be a ./v4l/tbs-x86_x64_r3.sh?

Will provide ouput from uname -a, lspci -nnk etc. when I get home, but anyone got any ideas in the meanwhile?
mrtrigger
 
Posts: 2
Joined: Fri Sep 13, 2013 8:04 pm

Re: Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby SergioDanielG » Mon Sep 16, 2013 7:20 pm

Hi mrtrigger.
In my case, when kernel update, I had to delete media tree from kernel modules. /usr/lib/modules/<your kernel version>/media or something like this. But be carefull.
Regards.
SergioDanielG
 
Posts: 356
Joined: Tue May 31, 2011 3:53 am
Location: Tostado (SF) Argentina

Re: Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby mrtrigger » Tue Sep 17, 2013 2:18 am

Worked like a charm, thanks SergioDanielG! :D

Just to help others that may be in the same situation, I just ran:
Code: Select All Code
> sudo mv /lib/modules/$(uname -r)/kernel/drivers/media ~/media.bak
> sudo make install
> sudo reboot


After reboot the card was detected as normal.
mrtrigger
 
Posts: 2
Joined: Fri Sep 13, 2013 8:04 pm

Re: Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby updatelee » Tue Sep 17, 2013 3:21 am

This has been mentioned numerous times on the forum, would be nice to see in the readme.

UDL
TBS6925/5980, Prof 7301/7500/8000, Genpix Skywalker-1, Skystar 2 Express HD
Hauppauge 950Q, Kworld 330U/435v3/445v3
Dreambox 800

I use Linux and support open source projects.
User avatar
updatelee
 
Posts: 374
Joined: Wed Jul 25, 2012 11:48 am
Location: CFB Edmonton

Re: Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby sevy1794 » Fri Oct 18, 2013 3:38 pm

I have to say that I had the same problem, and the procedure of removing kernel/drivers/media (which is very agressive as it removes stuff which is not related to tbs at all) does not work.

I updated to Ubuntu 13.10 and the same problem exists there, even with the latest driver.

Is there any other fix ?
sevy1794
 
Posts: 1
Joined: Thu Oct 17, 2013 12:40 am

Re: Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby updatelee » Fri Oct 18, 2013 9:18 pm

Post your kernel logs and we cab see what's going on

UDL
TBS6925/5980, Prof 7301/7500/8000, Genpix Skywalker-1, Skystar 2 Express HD
Hauppauge 950Q, Kworld 330U/435v3/445v3
Dreambox 800

I use Linux and support open source projects.
User avatar
updatelee
 
Posts: 374
Joined: Wed Jul 25, 2012 11:48 am
Location: CFB Edmonton

Re: Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby brettser » Mon Oct 28, 2013 7:01 pm

Hi

I had issues with install on 12.04/12.10/13.04 and again with 13.10 - From reading other posts I think the issue is down to file permissions in the zip file plus you need to use "make" instead of "sudo make" (read in post months ago, now dead.)

Code: Select All Code
mkdir driver
cd driver
wget http://www.tbsdtv.com/download/document/common/tbs-linux-drivers_v130927.zip
unzip tbs-linux-drivers_v130927.zip
tar xjvf linux-tbs-drivers.tar.bz2
find -type d -exec chmod 755 {} \;
chmod 755 linux-tbs-drivers/v4l/scripts/*
find linux-tbs-drivers -name “*.sh” -exec chmod 755 {} \;
cd linux-tbs-drivers

sudo make distclean
sudo ./v4l/tbs-x86_64.sh

cd /lib/modules/$(uname -r)/kernel/drivers
sudo mv media /home/yourusername/media.bak

cd linux-tbs-drivers

make
sudo make install
sudo shutdown -r now


Worked for me , best of luck!

Gavin

http://linux.mjnet.eu/post/401/tbs-driver-install-ubuntu-11-10-tbs6921/
https://tvheadend.org/projects/tvheadend/wiki/TBS6981
http://blog.mohammadzadeh.info/index.php/step-by-step-guide-to Dead Post
Last edited by brettser on Thu Dec 12, 2013 9:04 pm, edited 1 time in total.
brettser
 
Posts: 1
Joined: Sat Oct 26, 2013 5:46 am

Re: Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby chgil » Tue Dec 03, 2013 9:21 pm

what is the command for compile???
Excuse me but i have 2 usb DTT with af9035, but not function, with tbs6981.

not i have solution

Did you have solution for me?

Thanks
gilberto from italy
chgil
 
Posts: 2
Joined: Tue Dec 03, 2013 4:43 pm

Re: Card not detected on Ubuntu 13.04 x64 (kernel 3.8)

Postby megavega » Mon Jun 02, 2014 3:36 am

brettser Wrote:Hi

I had issues with install on 12.04/12.10/13.04 and again with 13.10 - From reading other posts I think the issue is down to file permissions in the zip file plus you need to use "make" instead of "sudo make" (read in post months ago, now dead.)

Code: Select All Code
mkdir driver
cd driver
wget http://www.tbsdtv.com/download/document/common/tbs-linux-drivers_v130927.zip
unzip tbs-linux-drivers_v130927.zip
tar xjvf linux-tbs-drivers.tar.bz2
find -type d -exec chmod 755 {} \;
chmod 755 linux-tbs-drivers/v4l/scripts/*
find linux-tbs-drivers -name “*.sh” -exec chmod 755 {} \;
cd linux-tbs-drivers

sudo make distclean
sudo ./v4l/tbs-x86_64.sh

cd /lib/modules/$(uname -r)/kernel/drivers
sudo mv media /home/yourusername/media.bak

cd linux-tbs-drivers

make
sudo make install
sudo shutdown -r now


Worked for me , best of luck!

Gavin

http://linux.mjnet.eu/post/401/tbs-driver-install-ubuntu-11-10-tbs6921/
https://tvheadend.org/projects/tvheadend/wiki/TBS6981
http://blog.mohammadzadeh.info/index.php/step-by-step-guide-to Dead Post




Code worked for me too! In Ubuntu 14.04 Thanks!
megavega
 
Posts: 3
Joined: Thu Mar 06, 2014 8:18 am


Return to Linux

Who is online

Users browsing this forum: No registered users and 2 guests