Raspberry Pi OVS Part 3

Опубликовано: 10 Октябрь 2024
на канале: Mon Goose
2,448
15

Raspberry Pi OVS configuration continues with the start of the configuration of the PI.
and includes the following commands up to and including the make

sudo apt-get update
wget http://openvswitch.org/releases/openv...
tar -xvf openvswitch-2.7.0.tar.gz
cd openvswitch-2.7.0
sudo su

apt-get install python-simplejson python-qt4 libssl-dev python-twisted-conch automake autoconf gcc uml-utilities libtool build-essential pkg-config

uname -r
see what version comes back and then
sudo apt-cache search linux-headers

see which if the best fit for uname -r above
apt-get install linux-headers-4.9.0-4-rpi

./configure --with-linux=/lib/modules/4.9.0-4-rpi/build
make && make install