Visible to Intel only — GUID: jhm1746055050742
Ixiasoft
3.5.1. Hardware Requirements
3.5.2. Software Requirements
3.5.3. Set Up the Hardware and Program the FPGA
3.5.4. Configuration Changes from BIOS
3.5.5. Host Operating System Check for Ubuntu v22.04
3.5.6. Installing the Required Kernel Version for Ubuntu v24.04
3.5.7. Set the Boot Parameters
3.5.8. MCDMA Custom Driver
3.5.9. MCDMA DPDK Poll Mode Driver
3.5.10. MCDMA Kernel Mode Network Device Driver
Visible to Intel only — GUID: jhm1746055050742
Ixiasoft
3.5.6. Installing the Required Kernel Version for Ubuntu v24.04
Ubuntu 24.04.2 runs on kernel v6.8 while the supported kernel version is up to v6.6. Follow the steps below to install kernel v6.6. Skip this section if you are not using Ubuntu v24.04.
- Get the following files from https://kernel.ubuntu.com/mainline/v6.6.65/ and copy them into the /root directory.
- linux-headers-6.6.65-060665-generic_6.6.65-060665.202412111549_amd64.deb
- linux-headers-6.6.65-060665_6.6.65-060665.202412111549_all.deb
- linux-image-unsigned-6.6.65-060665-generic_6.6.65-060665.202412111549_amd64.deb
- linux-modules-6.6.65-060665-generic_6.6.65-060665.202412111549_amd64.deb
- Run the following command to install the kernel package.
$ sudo dpkg -i linux-*.deb
- Run the following commands to update the bootloader and reboot the machine to load the new kernel version.
$ sudo update-grub
$ sudo reboot
- If the system does not boot up Ubuntu with kernel v6.6.65, set the GRUB_DEFAULT as shown below in /etc/default/grub:
GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 6.6.65-060665-generic"
- Update the bootloader and reboot by running the following commands:
$ sudo update-grub
$ sudo reboot
- Run the following commands to check the kernel version:
$ sudo uname -r
Expected output: 6.6.65-060665-generic