AMD (ATI Radeon) Graphic Drivers: Difference between revisions

From WikiMLT
mNo edit summary
mNo edit summary
Line 1: Line 1:
<noinclude><!--[[Category:Linux_Desktop|?]]-->{{ContentArticleHeader/Linux_Desktop}}</noinclude>
<noinclude><!--[[Category:Linux_Desktop|?]]-->{{ContentArticleHeader/Linux_Desktop}}</noinclude>
Проверка на наличните видео карти:
 
== List the available graphic controllers ==
{{collapse/begin}}
{{collapse/begin}}
<syntaxhighlight lang="shell" line="1">
<syntaxhighlight lang="shell" line="1">
Line 16: Line 17:
</syntaxhighlight>
</syntaxhighlight>
{{collapse/end}}
{{collapse/end}}
Сваляне, разархивиране и инсталиране на драйвер от тук: [https://support.amd.com/en-us/download/linux AMD Radeon Support: Linux Download Center]


Проверка дали драйвера е инсталиран:<syntaxhighlight lang="bash">
== Download and Install the driver ==
Browse the repository [https://www.amd.com/en/support/linux-drivers AMD Radeon Support: Linux Download Center], download and install the driver.
 
== Check whether the driver is installed ==
<syntaxhighlight lang="bash">
dpkg -l amdgpu-pro
dpkg -l amdgpu-pro
</syntaxhighlight>
</syntaxhighlight>


Референции:
== References ==
* [https://www.youtube.com/watch?v=jUXcvZ9TAsE YouTube: How To Install AMDGPU-PRO On Ubuntu 16.04 (Guide)]
* [https://www.youtube.com/watch?v=jUXcvZ9TAsE YouTube: How To Install AMDGPU-PRO On Ubuntu 16.04 (Guide)]
* [https://support.amd.com/en-us/kb-articles/Pages/Installation-Instructions-for-amdgpu-Graphics-Stacks.aspx AMD Support: Skip Navigation LinksDrivers + Support Installation Instructions for amdgpu Pro / amdgpu All Open Graphics Stacks]
* [https://support.amd.com/en-us/kb-articles/Pages/Installation-Instructions-for-amdgpu-Graphics-Stacks.aspx AMD Support: Skip Navigation LinksDrivers + Support Installation Instructions for amdgpu Pro / amdgpu All Open Graphics Stacks]

Revision as of 08:11, 25 September 2022

List the avail­able graph­ic con­trollers

lspci -k | grep -EA2 'VGA|3D'
#Out­put: Vostro 3350
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
	Subsystem: Dell 2nd Generation Core Processor Family Integrated Graphics Controller
	Kernel driver in use: i915
--
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Seymour [Radeon HD 6400M/7400M Series] (rev ff)
	Kernel driver in use: radeon
	Kernel modules: radeon

Down­load and In­stall the dri­ver

Browse the repos­i­to­ry AMD Radeon Sup­port: Lin­ux Down­load Cen­ter, down­load and in­stall the dri­ver.

Check whether the dri­ver is in­stalled

dpkg -l amdgpu-pro

Ref­er­ences