Intel Uhd Graphics 730 Ubuntu !!install!! Access

Report: Intel UHD Graphics 730 on Ubuntu

For MPV player

mpv --hwdec=vaapi --vo=gpu video.mkv

Or add to ~/.config/mpv/mpv.conf:

hwdec=vaapi
vo=gpu

For Firefox

  1. Go to about:config
  2. Set media.ffmpeg.vaapi.enabled to true
  3. Set widget.dmabuf.force-enabled to true
  4. Restart Firefox

Issue 1: Blank screen or “nomodeset” needed after install

Symptoms: Ubuntu boots to a black screen or low-resolution fallback.

Cause: The i915 driver fails to initialize without proper firmware. intel uhd graphics 730 ubuntu

Fix:

  1. At GRUB menu, press e and add i915.force_probe=4682 to the line starting with linux.
  2. Boot, then make permanent:
    echo "options i915 force_probe=4682" | sudo tee /etc/modprobe.d/i915-fix.conf
    sudo update-initramfs -u
    

The number 4682 is the device ID from lspci -n. Report: Intel UHD Graphics 730 on Ubuntu For

1. List PCI devices

lspci -nn | grep -i VGA

Expected output:
00:02.0 VGA compatible controller [0300]: Intel Corporation AlderLake-S GT1 [UHD Graphics 730] [8086:4682]

If you see [8086:4682], the kernel has identified the exact PCI ID. Or add to ~/

Benchmark sample (CS:GO native)

  • 1080p low settings: ~55-70 FPS
  • 720p low: ~85-100 FPS

For VLC

Tools → Preferences → Input/Codecs → Hardware-accelerated decoding → VA-API


Scroll to Top