Posts

Showing posts from 2023

how vmware player run or develop with f-stack(dpdk)

Image
  f_stack  office here what is this:     I develop in windows 11, wsl2 and hyper can not support virtual net interface for dpdk, so i installed VMware Workstation 17 Player in windows, and it installed ubuntu 22.04 in vmware to develop my c++ project with f-stack(dpdk). ide is vscode. why select f_stack:    no found ipv6 keywords in mtcp, so selected f_stack. 1. for my ubuntu 22.04 in VMware Workstation 17 Player install 2 virtual net interfaces, 1 for normal, 2 bind for dpdk develop > modify vmware net driver profile in windows file: {your vm os installed path}\Ubuntu 64.vmx ethernet0.virtualDev = "vmxnet3" ethernet1.virtualDev = "vmxnet3" 2. check out f-stack(with dpdk) in ubuntu 22.04 $ sudo -i   $ git clone https://github.com/F-Stack/f-stack.git 2. prepare install tools for first timer:  $ apt-get install libnuma-dev python3 python3-pip meson -y && pip3 install pyelftools gawk gcc make libssl-dev pkg-config   3. build...