On 2/28/25 09:53, Gerard Rodríguez Flaqué via discuss wrote: > Good morning, I'm writing this email in order to solve an issue with Open > vSwitch with DPDK. I can't install OVS in my Nvidia JETSON ARX ORIN > (*ARM-based platform*) system. I've tried to install OVS following the steps > in > https://docs.openvswitch.org/en/latest/intro/install/dpdk/#open-vswitch-with-dpdk > > <https://docs.openvswitch.org/en/latest/intro/install/dpdk/#open-vswitch-with-dpdk> > that are: > · sudo wget https://fast.dpdk.org/rel/dpdk-23.11.3.tar.xz > <https://fast.dpdk.org/rel/dpdk-23.11.3.tar.xz> > · sudo tar xf dpdk-23.11.3.tar.xz > · export DPDK_DIR=/usr/src/dpdk-stable-23.11.3 > · sudo meson build > · sudo ninja -C build > · sudo ninja -C build install > · sudo ldconfig > · ./configure --with-dpdk=static > · export PATH=$PATH:/usr/local/share/openvswitch/scripts > · sudo ovsdb-tool create /usr/local/etc/openvswitch/conf.db > /usr/local/share/openvswitch/vswitch.ovsschema > · sudo mkdir -p /usr/local/var/run/openvswitch > · sudo mkdir -p /usr/local/etc/openvswitch > > export PATH=$PATH:/usr/local/share/openvswitch/scripts $ export > DB_SOCK=/usr/local/var/run/openvswitch/db.sock $ ovs-vsctl --no-wait set > Open_vSwitch . other_config:dpdk-init=true > > Finally, when I run "ovs-ctl --no-ovsdb-server --db-sock="$DB_SOCK" start", > where export DB_SOCK=/usr/local/var/run/openvswitch/db.sock, the output is: > modprobe: FATAL: Module openvswitch not found in directory > /lib/modules/5.15.148-tegra > * Inserting openvswitch module > * not removing bridge module because bridges exist (docker0 l4tbr0 virbr0) > My question is, how can I solve this? OVS can't run on Nvidia Jetson well?
It looks like your system ships with a kernel that doesn't support openvswitch. One solution would be to re-build the kernel enabling support for openvswitch, but since you're not planning to use the kernel datapath, then it would be easier if you just edit the ovs-ctl script removing the following line: insert_mod_if_required || return 1 Without this line, the userspace datapath should still work fine. Best regards, Ilya Maximets. _______________________________________________ discuss mailing list disc...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-discuss