Graphics driver: Difference between revisions

From Alpine Linux
(moved information from Alpine_setup_scripts#setup-xorg-base)
(Moved Xorg related drivers to its own page Xorg)
 
Line 12: Line 12:
* For Nvidia Chipsets, see [[Nvidia Video]]
* For Nvidia Chipsets, see [[Nvidia Video]]


To install X11 based [[Desktop environments and Window managers|desktop]], you may want to install specific Xorg xf86 driver packages for your video card's chipset, as they may support specific features, effects and acceleration modes, and avoid error messages during X initialization. However, the most basic X features should work fine with just using the default kernel video-modesetting drivers.
For details on legacy Xorg drivers refer [[Xorg]] page.
 
{{Tip| xf86 driver packages follow standard naming conventions. So information found in  [https://wiki.archlinux.org/title/Xorg#Driver_installation ArchWiki], or [https://packages.gentoo.org/categories/x11-drivers Gentoo wiki] are to a large degree, also applicable to configuring the video hardware on Alpine Linux, except for proprietary drivers which are not available.}}
 
To see available xf86 video driver packages run:
{{cmd|$ apk search xf86-video}}
 
* For Sis video chipset install {{pkg|xf86-video-sis}}
* For VMware guests use {{pkg|xf86-video-vmware}}
* For VirtualBox guests use {{pkg|xf86-video-vboxvideo}}. Refer [[VirtualBox_guest_additions|VirtualBox guest additions]]
* For Hyper-V guests use {{pkg|xf86-video-fbdev}}. Refer [[Hyper-V_guest_services|Hyper-V guest services]].
* For KVM/QEMU guests refer [[QEMU#Using_Xorg_inside_Qemu|Xorg within QEMU]]


[[category:Graphics]]
[[category:Graphics]]
[[category: Drivers]]
[[category: Drivers]]
[[category: Desktop]]
[[category: Desktop]]

Latest revision as of 05:48, 22 November 2024

Many desktop environments need a graphics driver to work properly. Graphics cards of recent vintage need a driver to work. So one needs to install one of the below graphics drivers before installing a desktop:

Information about the video cards that are installed in the computer may be found using lspci command, which is not available by default. Refer the instructions to install pciutils package.

To identify the graphics card (the Subsystem output shows the specific model), issue the below command:

lspci -v | grep -A1 -e VGA -e 3D

Then, install an appropriate driver.

For details on legacy Xorg drivers refer Xorg page.