Oct 9 2010, 03:22 PM
Post
#1
|
|
|
Enthusiast Group: Members Posts: 6,630 Joined: 10-July 03 From: Canberra Member No.: 38 Card: None |
Hi Guys,
We have a couple of reports from Linux users about having the Quad DVB-T tuner card working under Linux. So, if any one who has got the card and wants to try under Linux, please let us know how it goes. You will need to download this May also want to read this post http://www.dtvforum.info/index.php?showtop...p;#entry1623391 Cheers Renura -------------------- Renura Enterprises Pty Ltd - Owner of DigitalNow and MediaNow- Importers, Distributors and Retailers of Digital TV and other Digital Multimedia Solutions
|
|
|
|
![]() |
Jun 19 2011, 03:36 PM
Post
#2
|
|
|
Be nice to me, I am new. Group: New Members Posts: 2 Joined: 31-May 11 Member No.: 14,315 Card: None |
Hiya
Flunky had asked for some sample lspci output - have attached along with lsusb for the same box This is an AMD64 Ubuntu 10.04.2 machine. Cheers, Hugh
dvb_quad_lspci.txt.gz ( 1.32K )
Number of downloads: 5
dvb_quad_lsusb.txt.gz ( 1.27K )
Number of downloads: 6 |
|
|
|
Jul 10 2011, 08:57 AM
Post
#3
|
|
|
Be nice to me, I am new. Group: New Members Posts: 1 Joined: 10-July 11 Member No.: 14,381 Card: Leadtek DTV1000T |
I can confirm I have this card working in Ubuntu 11.04. You may also be able to get this working using the instructions from the post #40 on this page:
http://ubuntuforums.org/showthread.php?t=1678094&page=4 But i went my own way with the newer realtek drivers. My system: CODE uname -a Linux HTPC 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux What I did: First needed to grab the latest V4L drivers: http://www.linuxtv.org/wiki/index.php/How_..._Device_Drivers Following instructions from the above link (and knowing that build-essentials contains a couple of the required packages), I grabbed what other I needed for my ubunutu installation. I did: CODE sudo apt-get install build-essential git patch patchutils libproc-processtable-perl Next I downloaded a built the drivers. Building is not really necessary here but it is included in the main script and only takes a few minutes. from me home directory CODE cd ~/ I did:CODE git clone git://linuxtv.org/media_build.git cd media_build/ ./build.sh Next i grabbed the latest realtek drivers from here: https://www.turnovfree.net/~stybla/linux/v4l-dvb/lv5tdlx/ CODE wget --no-check-certificate https://www.turnovfree.net/~stybla/linux/v4l-dvb/lv5tdlx/20110614_RTL2832_2836_2840_LINUX+rc.zip unzip 20110614_RTL2832_2836_2840_LINUX+rc.zip You might need to CODE sudo apt-get install unzip if you don't have it.Now you need to add these drivers to the V4L drivers. Copy the newly unzipped files across (you will need to change the path if your realtek drivers are different). CODE cp ~/20110614_RTL2832_2836_2840_LINUX+rc/*.* ~/media_build/linux/drivers/media/dvb/dvb-usb/ And next I patched the v4l drivers using steps 5b and bc from the readme in the realtek drivers. (Readme is CODE gedit 20110614_RTL2832_2836_2840_LINUX+rc/Doc/readme.txt )CODE gedit ~/media_build/linux/drivers/media/dvb/dvb-usb/Makefile Add these two lines at the end of Makefile: CODE dvb-usb-rtl2832u-objs = demod_rtl2832.o dvbt_demod_base.o dvbt_nim_base.o foundation.o math_mpi.o nim_rtl2832_mxl5007t.o nim_rtl2832_fc2580.o nim_rtl2832_mt2266.o rtl2832u.o rtl2832u_fe.o rtl2832u_io.o tuner_mxl5007t.o tuner_fc2580.o tuner_mt2266.o tuner_tua9001.o nim_rtl2832_tua9001.o tuner_fc0012.o nim_rtl2832_fc0012.o demod_rtl2836.o dtmb_demod_base.o dtmb_nim_base.o nim_rtl2836_fc2580.o nim_rtl2836_mxl5007t.o tuner_e4000.o nim_rtl2832_e4000.o tuner_mt2063.o demod_rtl2840.o tuner_max3543.o nim_rtl2832_mt2063.o nim_rtl2832_max3543.o nim_rtl2840_mt2063.o nim_rtl2840_max3543.o qam_demod_base.o qam_nim_base.o tuner_tda18272.o nim_rtl2832_tda18272.o rtl2832u_ioctl.o nim_rtl2832_fc0013.o tuner_fc0013.o obj-$(CONFIG_DVB_USB_RTL2832U) += dvb-usb-rtl2832u.o next CODE gedit ~/media_build/linux/drivers/media/dvb/dvb-usb/Kconfig And add these lines to the end: CODE config DVB_USB_RTL2832U tristate "Realtek RTL2832U DVB-T USB2.0 support" depends on DVB_USB help Realtek RTL2832U DVB-T driver. Next, compile and install! CODE cd media_build/ make distclean make sudo make install However, mine didn't compile! I got a lot of errors... but there is another driver file to try in the current build... CODE cp ~/media_build/linux/drivers/media/dvb/dvb-usb/rtl2832u.c ~/media_build/linux/drivers/media/dvb/dvb-usb/rtl2832u.c.orig cp ~/media_build/linux/drivers/media/dvb/dvb-usb/rtl2832u.c.bak ~/media_build/linux/drivers/media/dvb/dvb-usb/rtl2832u.c Now CODE make sudo make install Reboot and the card should work (no remote though) |
|
|
|
Aug 29 2011, 12:53 AM
Post
#4
|
|
|
Participant Group: New Members Posts: 25 Joined: 24-February 11 From: Victoria Member No.: 14,102 Card: None |
Thanks for inspiring me HTPC_Freak.
In case anyone out there is interested in building the module for 2.6.38-10, apply the attached patch in the .../20110614_RTL2832_2836_2840_LINUX+rc directory after the unzip step in HTPC_Freak's howto: CODE cd <where-you-unzipped-20110614_RTL2832_2836_2840_LINUX+rc.zip> patch < 2.6.38-10-generic.unified.diff The patch is here:
2.6.38_10_generic.unified.diff ( 10.23K )
Number of downloads: 11I have patched the code to successfully build and for the driver to work with the 2.6.38-10-generic kernel (the one I'm currently using on my mythbuntu box). From memory when I checked out the diff of that rtl2832u.c.bak file it had just had all the remote control stuff commented/hacked out of it. I've done some looking through the LinuxTV git repo and there has been a bunch of reshuffling where the remote control stuff is so I guess this .bak version of the file was to get around that to get the module to build. I have gone through the revision history of the files to piece together what has been changed and updated the driver code to look for the remote control stuff (just some restructuring of data structures) in the right place. So in theory this should mean the remote will work OK with my patched version (assuming it ever worked?!). I don't use the Quad's remote myself though so can't confirm this. Oh - and you might find it necessary to run CODE make menuconfig and select the rtl2832u module after you've edited the Kconfig as in HTPC_Freak's post.If someone notices the remote isn't working with this, let me know. Hope that helps! |
|
|
|
renura DigitalNow Quad DVB-T Tuner Card and Linux Oct 9 2010, 03:22 PM
DrP Watchout applying automatic updates to linux. Unt... Oct 10 2010, 08:33 AM
tailend I have just had a go compiling the driver on Ubunt... Oct 11 2010, 04:13 PM
DrP I too found that when built against 64 bit linux i... Oct 11 2010, 04:29 PM
tailend I looked for a more recent version of the driver w... Oct 13 2010, 05:23 PM
renura QUOTE (tailend @ Oct 13 2010, 06:23 PM) I... Oct 13 2010, 06:32 PM
tailend I switched my Ubuntu system to 32 bit and recompil... Oct 17 2010, 11:00 PM
renura QUOTE (tailend @ Oct 18 2010, 12:00 AM) I... Oct 18 2010, 07:13 AM
renura Those interested might like to know that there is ... Nov 16 2010, 06:23 PM
lyricnz QUOTE (renura @ Nov 16 2010, 07:23 PM) We... Nov 19 2010, 10:44 AM
gaspo100 QUOTE (renura @ Nov 16 2010, 04:23 PM) We... Dec 10 2010, 02:28 PM
renura QUOTE (gaspo100 @ Dec 10 2010, 03:28 PM) ... Dec 10 2010, 07:31 PM
renura Hi Guys,
One of our customers has modified the co... Dec 22 2010, 12:55 PM
lyricnz QUOTE (renura @ Dec 22 2010, 01:55 PM) On... Dec 23 2010, 10:35 AM
themagicpudding G'day Linux people,
In case it helps, here... Feb 24 2011, 09:55 AM
renura QUOTE (themagicpudding @ Feb 24 2011, 10... Feb 24 2011, 02:08 PM
DrP QUOTE (themagicpudding @ Feb 24 2011, 09... Feb 25 2011, 05:03 AM
themagicpudding All I have heard is a confirmation email from Renu... Feb 25 2011, 01:38 PM
tailend I am trying to compile for 2.6.38-8-generic kernel... Apr 30 2011, 03:53 PM
renura QUOTE (tailend @ Apr 30 2011, 03:53 PM) I... Apr 30 2011, 05:26 PM
tailend QUOTE (renura @ Apr 30 2011, 06:26 PM) Di... Apr 30 2011, 06:54 PM

dayswaste QUOTE (tailend @ Apr 30 2011, 06:24 PM) e... May 5 2011, 10:43 PM

dayswaste QUOTE (dayswaste @ May 5 2011, 10:13 PM) ... May 5 2011, 10:56 PM
themagicpudding QUOTE (renura @ Apr 30 2011, 06:26 PM) Di... May 12 2011, 02:38 PM
themagicpudding QUOTE (renura @ Apr 30 2011, 06:26 PM) Di... May 12 2011, 02:52 PM
flunky [quote name='themagicpudding' date='Ma... May 23 2011, 08:30 PM
renura Look also here
https://www.turnovfree.net/~stybla... May 24 2011, 09:05 AM
hughhalf Hiya,
Can confirm the card running on Ubuntu Serv... May 31 2011, 03:28 PM
renura QUOTE (hughhalf @ May 31 2011, 03:28 PM) ... Jun 1 2011, 08:36 AM
lyricnz I must add my name to the chorus of frustration wi... Jun 1 2011, 01:49 PM
renura QUOTE (lyricnz @ Jun 1 2011, 01:49 PM) I ... Jun 4 2011, 03:10 PM
flunky QUOTE (renura @ Jun 4 2011, 03:10 PM) Unf... Jun 16 2011, 11:32 PM
flunky See also http://www.linuxtv.org/wiki/index.php/Rea... Jun 17 2011, 05:19 PM
dayswaste So the consensus is if you are running a kernel ve... Jun 2 2011, 08:55 PM
dayswaste Thanks HTPC_Freak.
After seeing your post on Satu... Jul 12 2011, 11:03 PM
therat Many thanks for providing that info.
cheers Jul 10 2011, 12:35 PM
Flakheart I am totally new to linux and use PC-LinuxOS 32 bi... Aug 25 2011, 02:47 PM
Flakheart I'll give and and stick to windows as my kerne... Aug 29 2011, 03:28 PM
themagicpudding Hi all,
I've done some work on the Realtek so... Sep 15 2011, 12:22 AM
themagicpudding I've sped up the build process and made it a b... Sep 15 2011, 06:36 PM
renura @themagicpudding
looks like you are on a roll here... Sep 15 2011, 06:57 PM
themagicpudding In case anyone used it and noticed the remote wasn... Sep 16 2011, 01:27 AM
Scott Waller Hi magicpudding,
Thanks so much for this. I have... Sep 16 2011, 10:54 AM
Scott Waller OK
Sorry magicpudding, I cracked it.
I updated t... Sep 16 2011, 12:34 PM
themagicpudding Good to hear - trying a newer kernel version was g... Sep 16 2011, 12:54 PM
Scott Waller Just ran it with kernel 3.0.4-030004-generic
All ... Sep 16 2011, 01:02 PM
Scott Waller I can report that themagicpudding's solution w... Sep 17 2011, 01:31 PM
themagicpudding Glad to hear you're having some level of succe... Sep 19 2011, 09:16 PM
Scott Waller OK I'll take those ideas on board. I have som... Sep 19 2011, 10:20 PM
themagicpudding I don't use the the Quad's remote for my m... Sep 19 2011, 11:06 PM
Scott Waller Thanks for that, but it didn't help. Even in ... Sep 21 2011, 11:29 AM
Scott Waller Hi themagicpudding,
I am wondering if you could p... Sep 21 2011, 10:32 PM
themagicpudding @Scot Waller
Do you get all the keys correctly re... Sep 23 2011, 02:35 PM
Scott Waller Well today I tested the quad card at work. We hav... Sep 23 2011, 02:35 PM
themagicpudding I'd give the Windows install a go for verifica... Sep 23 2011, 02:48 PM
therat The Quad can have those sort of problems with Giga... Sep 23 2011, 03:22 PM
themagicpudding Of course I meant "Gigabyte" motherboard... Sep 23 2011, 03:39 PM
Scott Waller That's exactly the board I have, even with AMD... Sep 23 2011, 03:54 PM
themagicpudding Even with the latest BIOS from Gigabyte my mythtv ... Sep 23 2011, 05:44 PM
Scott Waller QUOTE (themagicpudding @ Sep 23 2011, 05... Sep 24 2011, 10:44 AM
therat As I now understand it, Gigabyte have finally reso... Sep 23 2011, 05:45 PM
themagicpudding Thanks for that information therat.
What should w... Sep 23 2011, 08:09 PM
therat I'm not exactly sure what the technical detail... Sep 23 2011, 09:12 PM
themagicpudding Cool - thanks for the suggestion.
I've emaile... Sep 23 2011, 10:15 PM
Scott Waller Also "themagicpudding"
The new Ubuntu k... Sep 24 2011, 11:49 AM
themagicpudding Glad to hear the avoiding of adapter0 trick helped... Sep 26 2011, 12:12 PM
flunky QUOTE (Scott Waller @ Sep 24 2011, 11:49 ... Sep 27 2011, 08:15 PM
Scott Waller Hi everyone,
Have dedicated today to try and solv... Sep 27 2011, 03:26 PM
themagicpudding I'm not sure but it could well be __because__ ... Sep 27 2011, 06:23 PM
Scott Waller QUOTE (themagicpudding @ Sep 27 2011, 06... Sep 27 2011, 09:02 PM
Scott Waller OK so I figured it out, and now have a working rem... Sep 27 2011, 06:35 PM
Scott Waller Sure Flunky
sources.list
CODE# deb cdrom:[Mythbu... Sep 27 2011, 08:41 PM
JamesLaugesen Hi magic, thanks so much for putting this script a... Sep 28 2011, 10:47 AM
themagicpudding Hi James,
Try the updated version like this (in a... Sep 28 2011, 06:21 PM
JamesLaugesen QUOTE (themagicpudding @ Sep 28 2011, 06... Oct 9 2011, 07:49 PM

Scott Waller QUOTE (JamesLaugesen @ Oct 9 2011, 07:49 ... Oct 10 2011, 01:15 PM
slith QUOTE (themagicpudding @ Sep 28 2011, 07... Oct 21 2011, 02:16 AM
Scott Waller QUOTE (slith @ Oct 21 2011, 02:16 AM) Hi ... Oct 21 2011, 09:20 AM
slith QUOTE (Scott Waller @ Oct 21 2011, 10:20 ... Oct 22 2011, 02:49 PM
themagicpudding QUOTE (slith @ Oct 22 2011, 03:49 PM) You... Oct 27 2011, 12:39 PM
Scott Waller Hi All,
Got this response from Gigabyte re Firmwa... Sep 30 2011, 03:25 PM
renura QUOTE (Scott Waller @ Sep 30 2011, 03:25 ... Sep 30 2011, 05:14 PM
themagicpudding Hi all.
I might be getting further with Gigabyte.... Oct 2 2011, 10:21 PM
themagicpudding Or maybe not. All I'm hearing are reasons to ... Oct 3 2011, 08:53 PM
Scott Waller QUOTE (themagicpudding @ Oct 3 2011, 08:5... Oct 4 2011, 04:25 PM
Scott Waller Hi All,
I have grabbed a ASUS MB to finally put t... Oct 19 2011, 07:47 AM
Scott Waller Hi again folks,
I got it working by manually runn... Oct 19 2011, 09:57 AM
Scott Waller Hi guys,
Just reporting back on my experiences wi... Oct 20 2011, 01:51 PM
slith Hi magic,
I just upgraded another MythTV box usin... Oct 30 2011, 11:01 PM
old_codger Hi fellas... new user around here. Great board
A... Nov 11 2011, 12:00 AM
Scott Waller QUOTE (old_codger @ Nov 11 2011, 12:00 AM... Nov 11 2011, 07:17 AM
old_codger QUOTE (Scott Waller @ Nov 11 2011, 07:17 ... Nov 12 2011, 06:56 AM
Scott Waller QUOTE (old_codger @ Nov 12 2011, 06:56 AM... Nov 12 2011, 11:55 AM
old_codger QUOTE (Scott Waller @ Nov 12 2011, 11:55 ... Nov 13 2011, 12:07 AM
ccss QUOTE (old_codger @ Nov 13 2011, 01:07 AM... Nov 13 2011, 05:41 AM
old_codger OK! I removed the old modules, removed the ... Nov 13 2011, 08:38 AM
old_codger OK! I've done the various stages of runnin... Nov 14 2011, 02:30 AM![]() ![]() |
|
Lo-Fi Version | Time is now: 25th May 2013 - 12:25 PM |