Skip to content

Instantly share code, notes, and snippets.

@andp97
Last active October 25, 2025 16:05
Show Gist options
  • Select an option

  • Save andp97/2b0e1f14219443fbeffcf84bf9c84354 to your computer and use it in GitHub Desktop.

Select an option

Save andp97/2b0e1f14219443fbeffcf84bf9c84354 to your computer and use it in GitHub Desktop.
amdgpu dirver ubuntu 22.04
lsb_release -a
#No LSB modules are available.
#Distributor ID: Ubuntu
#Description: Ubuntu 22.04 LTS
#Release: 22.04
#Codename: jammy
uname -a
# Linux andp97-ThinkPad-X395 6.8.0-85-generic #85~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Sep 19 16:18:59 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
wget https://repo.radeon.com/amdgpu-install/6.4.4/ubuntu/jammy/amdgpu-install_6.4.60404-1_all.deb
sudo apt-get install ./amdgpu-install_6.4.60404-1_all.deb
sudo amdgpu-install --usecase=graphics --no-dkms
lsmod | grep amdgpu
#amdgpu 17158144 19
#amdxcp 12288 1 amdgpu
#drm_exec 12288 1 amdgpu
#gpu_sched 61440 1 amdgpu
#drm_buddy 20480 1 amdgpu
#drm_suballoc_helper 20480 1 amdgpu
#drm_ttm_helper 12288 1 amdgpu
#ttm 110592 2 amdgpu,drm_ttm_helper
#drm_display_helper 237568 1 amdgpu
#i2c_algo_bit 16384 1 amdgpu
#video 77824 2 thinkpad_acpi,amdgpu
modprobe amdgpu
echo amdgpu | sudo tee /etc/modules-load.d/amdgpu.conf
#amdgpu
rm /etc/modprobe.d/blacklist-amdgpu.conf
update-initramfs -u
#update-initramfs: Generating /boot/initrd.img-6.8.0-85-generic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment