Diff for "MythTV_Hardware_VideoCards"


Differences between revisions 13 and 14
Revision 13 as of 2007-02-17 18:51:04
Size: 3991
Editor: c-68-40-86-176
Comment: "linux-restricted-modules" was not found, instead "...-common" is present
Revision 14 as of 2007-03-17 00:03:49
Size: 4129
Editor: 74-141-134-199
Comment: added nvidia detail and conformation
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
If you have an ATI/AMD graphics card that is generally newer than a Radeon 9000, you can use the proprietary graphics driver.  If you have an ATI/AMD graphics card that is generally newer than a Radeon 9000, you can use the proprietary graphics driver.
Line 8: Line 8:
 
Line 11: Line 11:
sudo apt-get install xorg-driver-fglrx linux-restricted-modules-generic # sudo apt-get install xorg-driver-fglrx linux-restricted-modules-generic
Line 17: Line 17:
sudo /etc/init.d/linux-restricted-modules-common start
sudo depmod -a
# sudo /etc/init.d/linux-restricted-modules-common start
# sudo depmod -a
Line 24: Line 24:
sudo aticonfig --initial
sudo aticonfig --overlay-type=Xv
# sudo aticonfig --initial
#
sudo aticonfig --overlay-type=Xv
Line 29: Line 29:
sudo nano /etc/X11/xorg.conf # sudo nano /etc/X11/xorg.conf
Line 37: Line 37:
   
Line 40: Line 40:
sudo /etc/init.d/gdm restart # sudo /etc/init.d/gdm restart
Line 44: Line 44:
sudo /etc/init.d/kdm restart # sudo /etc/init.d/kdm restart
Line 49: Line 49:
fglrxinfo # fglrxinfo
Line 53: Line 53:
$ fglrxinfo # fglrxinfo
Line 61: Line 61:
$ fglrxinfo  # fglrxinfo
Line 79: Line 79:
sudo apt-get install nvidia-glx linux-restricted-modules-generic # sudo apt-get install nvidia-glx linux-restricted-modules-generic
Line 83: Line 83:
sudo apt-get install nvidia-glx-legacy # sudo apt-get install nvidia-glx-legacy
Line 86: Line 86:
 2) Make sure that nv isn't in the DISABLED_MODULES list in /etc/default/linux-restricted-modules-common.  2) Make sure that the nv isn't disbled:
   {{{
# sudo nano /etc/default/linux-restricted-modules-common
   }}}
if you see:
     {{{
DISABLED_MODULES="nv"
     }}}
make it:
     {{{
DISABLED_MODULES=""
     }}}
Line 90: Line 101:
sudo /etc/init.d/linux-restricted-modules start
sudo depmod -a
# sudo /etc/init.d/linux-restricted-modules start
# sudo depmod -a
Line 95: Line 106:
 
Line 98: Line 109:
sudo nvidia-xconfig # sudo nvidia-xconfig
Line 102: Line 113:
sudo /etc/init.d/gdm restart # sudo /etc/init.d/gdm restart
Line 104: Line 115:
  or    or
Line 106: Line 117:
sudo /etc/init.d/kdm restart # sudo /etc/init.d/kdm restart

Video Cards

Out of the box, Ubuntu includes support for video cards via open source drivers. You may want to enable the proprietary drivers for your graphics card if you are looking for better 3D acceleration (especially if you want to use the OpenGL effects of mythfrontend), or if you are looking to use TV-Out support for your graphics card.

ATI/AMD Graphics Cards

If you have an ATI/AMD graphics card that is generally newer than a Radeon 9000, you can use the proprietary graphics driver.

This guide is loosely based upon the guide at https://help.ubuntu.com/community/BinaryDriverHowto/ATI:

  • 1) Install the driver:
    • # sudo apt-get install xorg-driver-fglrx linux-restricted-modules-generic
    2) Make sure that fglrx isn't in the DISABLED_MODULES list in /etc/default/linux-restricted-modules-common. 3) Update module dependencies
    • # sudo /etc/init.d/linux-restricted-modules-common start
      # sudo depmod -a

    If you don't have xorg installed yet, do these steps after installing xorg (later in the guide) 5) Configure xorg for your card.

    • # sudo aticonfig --initial
      # sudo aticonfig --overlay-type=Xv
    6) Disabled the Composite extension since it isn't yet supported by ATI/AMD graphics cards. Edit /etc/X11/xorg.conf
    • # sudo nano /etc/X11/xorg.conf
      Add this to the bottom:
      • Section "Extensions"
                Option      "Composite" "0"
        EndSection
    7) Switch to Virtual Terminal 1 (CTRL-ALT-F1) and Restart GDM/KDM (whichever you will be using)
    • # sudo /etc/init.d/gdm restart
      or
      # sudo /etc/init.d/kdm restart
    8) Test to see if the driver loaded properly.
    • # fglrxinfo
      If you see output similar to this, things are working properly:
      • # fglrxinfo
        display: :0.0  screen: 0
        OpenGL vendor string: ATI Technologies Inc.
        OpenGL renderer string: RADEON 9700 Generic
        OpenGL version string: 2.0.5755 (8.24.8)
      If you see output similar to this, things aren't working properly:
      • # fglrxinfo
        display: :0.0  screen: 0
        OpenGL vendor string: Mesa project: www.mesa3d.org
        OpenGL renderer string: Mesa GLX Indirect
        OpenGL version string: 1.2 (1.5 Mesa 6.4.1)

If GDM/KDM hasn't started or isn't properly working See [https://help.ubuntu.com/community/BinaryDriverHowto/ATI], the forums, and #ubuntu for more help.

Nvidia Graphics Cards

Nvidia provides a list of cards that supported by their proprietary drivers at http://download.nvidia.com/XFree86/Linux-x86/1.0-8762/README/appendix-a.html. See if your card is supported by the ordinary or the legacy drivers.

This guide is loosely based on the guide at https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia.

  • 1) Install the appropriate driver for your card
    • # sudo apt-get install nvidia-glx linux-restricted-modules-generic
      or
      # sudo apt-get install nvidia-glx-legacy
    2) Make sure that the nv isn't disbled:
    • # sudo nano /etc/default/linux-restricted-modules-common

if you see:

  • DISABLED_MODULES="nv"

make it:

  • DISABLED_MODULES=""
  • 3) Update module dependencies
    • # sudo /etc/init.d/linux-restricted-modules start
      # sudo depmod -a

    If you don't have xorg installed yet, do these steps after installing xorg (later in the guide) 4) Enable the driver

    • # sudo nvidia-xconfig
    5) Switch to Virtual Terminal 1 (CTRL-ALT-F1) and Restart GDM/KDM (whichever you will be using)
    • # sudo /etc/init.d/gdm restart
      or
      # sudo /etc/init.d/kdm restart
    6) If you see the NVIDIA Splash Screen, things have worked correctly. Otherwise, you will need to troubleshoot further.

See [https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia], the forums, or #ubuntu for additional assistance.

PVR-350 Video Output

If you are using a PVR-350, video output can be enabled on this card via this howto:

[https://help.ubuntu.com/community/MythTV_Edgy_hardware_pvr-350_TV-out X running on PVR-350 out click here.]

MythTV_Hardware_VideoCards (last edited 2008-06-27 10:15:12 by localhost)