Difference between pages "Package:Mozilla LDAP C SDK" and "Package:AMD Catalyst Video Drivers"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
(Created page with "{{Ebuild |Summary=This is the Mozilla LDAP SDK in the C language. |CatPkg=dev-libs/mozldap |Maintainer=Psychopatch, |Repository=Funtoo LDAP Overlay }} {{EbuildFooter}}")
 
m (Drobbins moved page Package:Accelerated AMD Video Drivers to Package:AMD Catalyst Video Drivers: name clarification)
 
Line 1: Line 1:
{{Ebuild
{{Ebuild
|Summary=This is the Mozilla LDAP SDK in the C language.
|Summary=Accelerated ATI/AMD binary drivers for Radeon HD 5000 and newer chipsets.
|CatPkg=dev-libs/mozldap
|CatPkg=x11-drivers/ati-drivers
|Maintainer=Psychopatch,
|Maintainer=Drobbins
|Repository=Funtoo LDAP Overlay
|Repository=Funtoo Overlay
|Overlay=Funtoo
}}
}}
== Introduction ==


<tt>x11-drivers/ati-drivers</tt> (often referred to as "<tt>fglrx</tt>", the name of its kernel module) is the proprietary, accelerated driver for AMD (ATI) graphics cards.
== Preparing to Install ==
=== Configuring the kernel ===
{{kernelop|desc=
[*] Enable loadable module support
Processor type and features --->
      [*] MTRR (Memory Type Range Register) support
Bus options (PCI etc.) --->
      [*] PCI Express Port Bus Support
      [*] Message Signaled Interrupts (MSI and MSI-X)
Device Drivers --->
      Graphics support --->
            < > Direct Rendering Manager (xFree86 4.1.0 and higher DRI support) --->
}}
{{fancynote| If you need support for AGP cards, enable the following kernel options:}}
{{kernelop|desc=
Device Drivers --->
      Graphics support --->
            <*> /dev/agpgart (AGP Support) --->
                  Select an appropriate AGP driver:
                  <*> AMD Opteron/Athlon64 on-CPU GART support
}}
=== Editing make.conf ===
Add the following to your <code>/etc/make.conf</code>:
<console>
# ##i##nano /etc/make.conf
VIDEO_CARDS="fglrx"
</console>
=== Editing package.use ===
Then, add the following to <code>/etc/portage/package.use</code>:
<console>
###i## nano /etc/portage/package.use
x11-drivers/ati-drivers qt4
</console>
Adding the <code>qt4</code> USE flag enables support for building of <tt>amdcccle</tt> (AMD Catalyst Control Center: Linux Edition).
== Installing ==
=== Emerging the package ===
To emerge the drivers, run the following command:
<console>
###i## emerge -av --changed-use --deep @world
</console>
== Configuring ==
Next, set ati-drivers to manage the system's OpenGL implementation:
<console>
###i## eselect opengl set ati
</console>
Afterwards, run <tt>aticonfig</tt> to modify the X-server configuration file to work with the ati-drivers:
<console>
###i## aticonfig --initial
</console>
== Troubleshooting ==
=== I am using a HDMI connection, and my monitor's display has a black border around it. ===
Disable overscan using the following command, as root:
<console>
# ##i##aticonfig --set-pcs-val=MCIL,DigitalHDTVDefaultUnderscan,0
</console>
You may need to restart your X session.
=== GNOME 3 windows only refresh when I drag them. ===
This is a known issue, reported in [http://bugs.funtoo.org/browse/FL-1130 Funtoo Bug 1130]. This issue has been fixed by addressing a bug in cogl -- upgrade to cogl-1.12.2-r2 to fix it.
[[Category:Video Cards]]
[[Category:First Steps]]
{{EbuildFooter}}
{{EbuildFooter}}

Revision as of 00:02, June 20, 2014

AMD Catalyst Video Drivers

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Introduction

x11-drivers/ati-drivers (often referred to as "fglrx", the name of its kernel module) is the proprietary, accelerated driver for AMD (ATI) graphics cards.

Preparing to Install

Configuring the kernel

[*] Enable loadable module support
Processor type and features --->
      [*] MTRR (Memory Type Range Register) support
Bus options (PCI etc.) --->
      [*] PCI Express Port Bus Support
      [*] Message Signaled Interrupts (MSI and MSI-X)
Device Drivers --->
      Graphics support --->
            < > Direct Rendering Manager (xFree86 4.1.0 and higher DRI support) --->
   Note
If you need support for AGP cards, enable the following kernel options:
Device Drivers --->
      Graphics support --->
            <*> /dev/agpgart (AGP Support) --->
                  Select an appropriate AGP driver:
                  <*> AMD Opteron/Athlon64 on-CPU GART support

Editing make.conf

Add the following to your /etc/make.conf:

root # nano /etc/make.conf
VIDEO_CARDS="fglrx"

Editing package.use

Then, add the following to /etc/portage/package.use:

root # nano /etc/portage/package.use
x11-drivers/ati-drivers qt4

Adding the qt4 USE flag enables support for building of amdcccle (AMD Catalyst Control Center: Linux Edition).

Installing

Emerging the package

To emerge the drivers, run the following command:

root # emerge -av --changed-use --deep @world

Configuring

Next, set ati-drivers to manage the system's OpenGL implementation:

root # eselect opengl set ati

Afterwards, run aticonfig to modify the X-server configuration file to work with the ati-drivers:

root # aticonfig --initial

Troubleshooting

I am using a HDMI connection, and my monitor's display has a black border around it.

Disable overscan using the following command, as root:

root # aticonfig --set-pcs-val=MCIL,DigitalHDTVDefaultUnderscan,0

You may need to restart your X session.

GNOME 3 windows only refresh when I drag them.

This is a known issue, reported in Funtoo Bug 1130. This issue has been fixed by addressing a bug in cogl -- upgrade to cogl-1.12.2-r2 to fix it.