Created one node setup using the small-lan
profile.
ssh
'd into the machine.
https://doc.dpdk.org/guides/linux_gsg/sys_reqs.html
Check gcc
version
gcc --version
version 11.4.0
Update and install build-essentials
sudo apt-get update && sudo apt-get install build-essential
sudo apt-get install libnuma-dev
The above step didn’t install pkgconf
. Had to install it manually:
sudo apt-get install pkgconf
Checked python version
python --version
version 3.10.12
present
Installed meson
and ninja
sudo apt-get install python3-pip
pip install meson ninja
Installed pyelftools
sudo apt-get install python3-pyelftools
Checked Kernel version and allocated hugepages
uname -r
returned 5.15.0-86-generic
Checked the number of nodes:
ls /sys/devices/system/node/ | grep node
Allocated Hugepages:
sudo su
echo 1024 > /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages
echo 1024 > /sys/devices/system/node/node1/hugepages/hugepages-2048kB/nr_hugepages
then exit
out of superuser mode
Cloned DPDK (ref: https://doc.dpdk.org/guides/linux_gsg/build_dpdk.html)
git clone <https://github.com/DPDK/dpdk.git>
cd dpdk
meson
and ninja
were not properly installed with pip. Installed them with
sudo apt-get install meson ninja-build
Built dpdk
meson setup -Dexamples=helloworld build
cd build
ninja
sudo meson install
sudo ldconfig
cd dpdk/build/examples
and run
sudo ./dpdk-helloworld -l 0-3 -n 4