Difference between pages "Video" and "Package:Nouveau Video Drivers (Open Source)"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m (link to Package:Nouveau_Video_Drivers_(Open_Source))
 
m (advice to editors)
 
Line 1: Line 1:
The purpose of this page is to give you streamlined steps for setting up your video hardware for X, and desktop environments such as GNOME.
{{Ebuild
 
|Summary=The Nouveau video drivers are Open Source drivers providing 2D and 3D accelerated graphics for nVidia cards. Nouveau consists of the X.Org DDX driver (x11-drivers/xf86-video-nouveau), Linux kernel KMS driver (nouveau), and Gallium3D drivers in Mesa (media-libs/mesa).
{{Important|Editors: OK, I've decided to change the plans for this page. This is going to be a page similar to [[Subarches]]. The idea is to help people to identify their hardware and guide them toward the correct driver for their chipset. The focus will be primarily on defining the types of hardware that are supported, what products they appear in, and how to know if you have this hardware, and also give people good general overview of options available to them (free vs. proprietary, etc.) Other important topics that apply to all drivers, like <code>eselect opengl</code> should be covered as well. This will then serve as the meta-page for Video support, with individual ebuild pages holding the details for each driver.}}
|CatPkg=x11-drivers/xf86-video-nouveau
 
|Maintainer=
== Video Drivers ==
|Homepage=http://nouveau.freedesktop.org
 
First determine which video card you have and which driver it requires.
 
<console>###i## lspci -nn | grep -i vga</console>
 
to see what your system is using:
<console>###i## lspci -k</console>
 
Once hardware is determined use the following sections to add or edit the <code>VIDEO_CARDS</code> global variable in <code>/etc/portage/[[make.conf]]</code>.  For more granular details including kernel configurations, frame buffer settings, and xorg configurations: see specific package page links.
 
=== AMD/ATI ===
Users can choose between free ({{Package|x11-drivers/xf86-video-ati}}) and proprietary ({{Package|x11-drivers/ati-drivers}}) video drivers. The free drivers are recommended as the proprietary drivers are not currently maintained very well by AMD.
 
==== Cards ====
* '''NEED TABLE''': available drivers, hardware gen, required VIDEO_CARDS variable
 
==== {{package|x11-drivers/xf86-video-ati}} ====
Open source drivers:
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="radeon"
}}
}}
 
{{important|Editors: Please refer to {{Package|x11-drivers/ati-drivers}} as a guide to the format and content required for describing the installation and use of Nouveau.}}
==== {{Package|x11-drivers/ati-drivers}} ====
{{PageNeedsUpdates}}
Closed source drivers:
{{EbuildFooter}}
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="fglrx"
}}
 
=== Intel ===
==== Cards ====
* '''NEED TABLE''': available drivers, hardware gen, VIDEO_CARDS variable
 
==== gen 1&2 ====
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="intel"
}}
 
==== gen 3 ====
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="intel i915"
}}
 
==== gen 4+ ====
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="intel i965"
}}
 
 
=== Nvidia ===
Users can choose between Open (nouveau) and Closed-Source {{package|x11-drivers/nvidia-drivers}} video drivers.  Open nouveau drivers are preferred as many kernels conflict with closed-source drivers.
 
==== Cards ====
* '''NEED TABLE''': nouveau + nvidia-drivers versions, hardware gen, required VIDEO_CARDS variable
 
==== {{Package|x11-drivers/xf86-video-nouveau}} ====
Open source drivers:
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="nouveau"
}}
 
==== {{Package|x11-drivers/nvidia-drivers}}====
Closed source drivers:
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="nvidia"
}}
 
see [[Uvesafb]] for framebuffering.
 
=== Other ===
==== Multiple Cards (Hybrid Graphics) ====
recommended [[make.conf]] VIDEO_CARDS
Hybrid intel/ati:
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="fglrx intel"
}}
 
==== Virtual Machine Guests ====
These settings are used by Parallels VM's and presumably others
{{file|name=/etc/portage/make.conf|lang=|desc=set video global variable|body=
VIDEO_CARDS="vesa vga"
}}
 
==== Framebuffer Specific ====
=====[[Uvesafb]]=====
 
====={{package|x11-drivers/xf86-video-vesa}}=====
 
==== Raspberry Pi ====
{{SectionNeedsUpdates}}
 
== Install ==
Once your video cards variables are set in [[make.conf]], and kernel configurations are arranged merge changes into your system:
 
<console>###i## emerge -avuND world</console>
 
{{note|we should change world to the specific package that pulls in all the other video stuff so if this page is ran on an old stale system it doesn't pull in 50 bazillion packages}}
 
==Configure X.org==
===Nvidia===
nvidia-xconfig, etc.
 
===AMD/ATI===
aticonfig, etc.
<console># ##i##aticonfig --initial --input=/etc/X11/xorg.conf</console>
 
==Finalize and test==
==== eselect opengl ====
{{note|change the number of card eselected to match the card of your system}}
<console>###i## eselect opengl list
###i## eselect opengl set 1</console>
 
==== eselect opencl ====
{{note|some setups can make use of opencl}}
<console>###i##eselect opencl list
###i##eselect opencl set 1</console>
* reboot/test process
 
==Troubleshooting==
* what to do if only a blank screen
 
Category:Video Cards wrap me with braces when im snazzy
Category:First Steps wrap me with braces when im snazzy

Revision as of 12:41, November 27, 2014

Nouveau Video Drivers (Open Source)

   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.

   Important

Editors: Please refer to x11-drivers/ati-drivers as a guide to the format and content required for describing the installation and use of Nouveau.