Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Get https://www.mirrorservice.org/sites/releases.ubuntu.com/24.04.2/ubuntu-24.04.2-live-server-amd64.iso
  2. Choose HWE kernel (during install)

Kernel 

...

Wit HWE we got Kernel  6.11.0-21


Code Block
Using username "gmk".
Server refused our key
gmk@10.9.9.77's password:
Welcome to Ubuntu 24.04.2 LTS (GNU/Linux 6.11.0-21-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/pro

 System information as of Fri Apr  4 05:06:10 PM UTC 2025

  System load:  0.07              Temperature:             63.0 C
  Usage of /:   6.6% of 97.87GB   Processes:               160
  Memory usage: 3%                Users logged in:         1
  Swap usage:   0%                IPv4 address for enp6s0: 10.9.9.77


Expanded Security Maintenance for Applications is not enabled.

33 updates can be applied immediately.
To see these additional updates run: apt list --upgradable

Enable ESM Apps to receive additional future security updates.
See https://ubuntu.com/esm or run: sudo pro status


To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.

Code Block
apt install intel-media-va-driver-non-free
apt install vainfoy cmake pkg-config meson libdrm-dev automake libtool gcc git


it doesnot make vainfo work 

...

so lets try build latest driver

Code Block
tbdcd ~
rm -Rf gmmlib/
git clone https://github.com/intel/gmmlib.git
cd gmmlib/
#git checkout -b intel-gmmlib-22.7.1
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 4
make install


cd ~; 
git clone https://github.com/intel/libva.git
cd libva
#git checkout v2.22-branch
./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu
make
make install

cd~
rm -Rf media-driver/
git clone https://github.com/intel/media-driver.git
cd media-driver/
#git checkout -b intel-media-24.3.4
mkdir build
cd build 
cmake ../
make -j 4
make install


additional packages

Code Block
apt install lm-sensors btop cpufrequtils
wget https://raw.githubusercontent.com/horshack-dpreview/setPL/master/setPL.sh
chmod +x /root/setPL.sh

...