Visible to Intel only — GUID: dvh1745273250555
Ixiasoft
Visible to Intel only — GUID: dvh1745273250555
Ixiasoft
3.5.5. Host Operating System Check for Ubuntu v22.04
Follow the steps below to check if your host operating system version matches the Ubuntu 22.04 as mentioned in Software Requirements. Skip this section if you are not using Ubuntu 22.04.
- Check the kernel version using this command:
$ uname -r
Expected output:
5.15.0-xx-generic
- If this is not the kernel version in your Ubuntu 22.04 system, follow the steps below. These steps will change the kernel from HWE to GA Linux 5.15.0-xx-generic and install Linux headers and gcc required for the MCDMA drivers.
// Install GA.
sudo apt install linux-image-generic
// Reboot into the newly-installed older kernel.
sudo apt remove linux-generic-hwe-22.04
// Remove HWE.
sudo apt autoremove
// Install required packages
sudo apt-get install linux-headers-generic gcc
- Check the gcc version using this command:
$ gcc --version
- If the gcc is not gcc-11, install gcc-11 using these commands:
$ sudo apt-get update
$ sudo apt install gcc-11
- To switch between the installed gcc versions, use the update-alternatives tool and select gcc-11.
$ sudo update-alternatives --config gcc
Ensure that Proxy is set. Otherwise, some of these updates do not work.