LinuxMCE Forums
May 18, 2013, 10:02:29 am GMT-1 *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com
 
   Home   Help Search Chat Login Register  
Pages: [1]
  Print  
Author Topic: GPU Compatability Matrix  (Read 688 times)
l3mce
NEEDS to work for LinuxMCE
***
Posts: 1031



View Profile
« on: December 10, 2012, 08:40:59 pm »

Hi friends,
In order to try and effect better use of my time, I have created a preliminary matrix for GPU's that do NOT work ootb, and how to try to resolve them. I am always happy to try and help people, but with several people on newer GPUs, a lot of my time is eaten up trying to get things working, and testing. Hopefully this will cut down on that traffic a bit. Please give feedback here.
http://wiki.linuxmce.org/index.php/1004_Video_Hardware_Compatibility_List

Also linked in this file is another thing that might better explain the new audio configurations.
http://wiki.linuxmce.org/index.php/Audio_in_1004
Logged

I never quit... I just ping out.
davegravy
Guru
****
Posts: 451


View Profile
« Reply #1 on: December 10, 2012, 09:24:29 pm »

Thanks L3mce,

I am going to try your instructions for my GT440 on a fresh install in the next few days. Will let you know how it goes.

Dave
Logged
golgoj4
wants to work for LinuxMCE
**
Posts: 819


hrumpf!


View Profile WWW
« Reply #2 on: December 11, 2012, 03:12:25 am »

Thank you for this L3top!

-Langstonius
Logged

Those people who tell you not to take chances, they are all missing what life's all about.

Wiki Hardware Page http://wiki.linuxmce.org/index.php/User:Langstonius
davegravy
Guru
****
Posts: 451


View Profile
« Reply #3 on: December 11, 2012, 03:21:02 am »

I'm getting a failed to setup X after following all the steps from this wiki.

* L3mce determined that my card (GT440, ID=0de0) has its ID in the "backports required" section of /usr/pluto/bin/nvidia-install.sh, and it should NOT be there. We've removed it, and then manually uninstalled the backports.

* We're still getting a failed to setup X however.

[EDIT]

After much fighting with this and continuing to get "Failed to setup X", I realized that each time I installed the nvidia driver manually I was getting an error

Quote
Module build for the currently running kernel was skipped since the kernel source for this kernel does not seem to be installed.

According to this page http://typethinker.blogspot.ca/2010/02/ubuntu-fails-to-load-nvidia-kernel.html all it really wants is the headers for the installed kernel.

I did an

Code:
sudo apt-get install linux-headers-$(uname -r)

and voila, nvidia module compiled, and no more failed to setup x. L3mce, I'm guessing this should be run after upgrading to natty kernel as described in your wiki?

This is currently a highly hacked with install, but I now have video and audio* via HDMI working on the GT440 using driver 304, natty kernel, and the modified setupaudiovideo.sh.

I'm going to try a clean install to test if my theory is correct.

*Audio didn't seem to be working in MythTV.
« Last Edit: December 11, 2012, 06:20:04 am by davegravy » Logged
RayBe
Guru
****
Posts: 264



View Profile
« Reply #4 on: December 11, 2012, 02:35:49 pm »

l3mce,

Thank you very much for all your hard work and support, making audio and video work for everybody and documenting it.

br,
Raymond
Logged

When you were born, you were crying and everybody else was laughing.
Live your life so when you die, you are laughing and everybody else is crying.
l3mce
NEEDS to work for LinuxMCE
***
Posts: 1031



View Profile
« Reply #5 on: December 11, 2012, 02:43:29 pm »

I'm getting a failed to setup X after following all the steps from this wiki.

* L3mce determined that my card (GT440, ID=0de0) has its ID in the "backports required" section of /usr/pluto/bin/nvidia-install.sh, and it should NOT be there. We've removed it, and then manually uninstalled the backports.

* We're still getting a failed to setup X however.

[EDIT]

After much fighting with this and continuing to get "Failed to setup X", I realized that each time I installed the nvidia driver manually I was getting an error

According to this page http://typethinker.blogspot.ca/2010/02/ubuntu-fails-to-load-nvidia-kernel.html all it really wants is the headers for the installed kernel.

I did an

Code:
sudo apt-get install linux-headers-$(uname -r)

and voila, nvidia module compiled, and no more failed to setup x. L3mce, I'm guessing this should be run after upgrading to natty kernel as described in your wiki?

This is currently a highly hacked with install, but I now have video and audio* via HDMI working on the GT440 using driver 304, natty kernel, and the modified setupaudiovideo.sh.

I'm going to try a clean install to test if my theory is correct.

*Audio didn't seem to be working in MythTV.

Part of installing the natty kernel IS installing the headers file...
CurKernel="-generic"
if uname -r | grep "pae"; then CurKernel="-generic-pae"; fi
NewKernel="linux-image${CurKernel}-lts-backport-natty"
NewHeaders="linux-headers${CurKernel}-lts-backport-natty"
apt-get -yf install "$NewKernel"
apt-get -yf install "$NewHeaders"

Please give me the result of the following:
Code:
CurKernel="-generic"
if uname -r | grep "pae"; then CurKernel="-generic-pae"; fi
apt-cache policy linux-headers${CurKernel}-lts-backport-natty | grep stall
Logged

I never quit... I just ping out.
SBCC
Veteran
***
Posts: 118


View Profile
« Reply #6 on: December 11, 2012, 04:58:33 pm »

I think
Code:
ppa:team-iquik/alsa
is only going to install 1.24 Alsa
Logged
davegravy
Guru
****
Posts: 451


View Profile
« Reply #7 on: December 12, 2012, 02:30:36 am »

Part of installing the natty kernel IS installing the headers file...
CurKernel="-generic"
if uname -r | grep "pae"; then CurKernel="-generic-pae"; fi
NewKernel="linux-image${CurKernel}-lts-backport-natty"
NewHeaders="linux-headers${CurKernel}-lts-backport-natty"
apt-get -yf install "$NewKernel"
apt-get -yf install "$NewHeaders"

Please give me the result of the following:
Code:
CurKernel="-generic"
if uname -r | grep "pae"; then CurKernel="-generic-pae"; fi
apt-cache policy linux-headers${CurKernel}-lts-backport-natty | grep stall

I pasted that whole codeblock in but this time around I watched more carefully and noticed that it stops executing after installing the kernel. I had to separately paste in

Code:
apt-get -yf install "$NewHeaders"

and then

Code:
apt-get update
apt-get -yf dist-upgrade

to my putty client to get all the code in that block to execute. Chalk it up to my newbness I suppose. Now its working fine, except for audio in myth.
Logged
l3mce
NEEDS to work for LinuxMCE
***
Posts: 1031



View Profile
« Reply #8 on: December 12, 2012, 06:12:57 am »

I think
Code:
ppa:team-iquik/alsa
is only going to install 1.24 Alsa

Correct, I was confused for a second... fixed. Was easier distinguishing .24 backports and .25... but completely wrong... thanks.
Logged

I never quit... I just ping out.
SBCC
Veteran
***
Posts: 118


View Profile
« Reply #9 on: December 12, 2012, 06:25:19 pm »

Thank you!!!
Logged
jamo
Guru
****
Posts: 352


View Profile WWW
« Reply #10 on: December 13, 2012, 01:12:47 pm »

Jeepers, this is an excellent page. Well done.

Logged
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!