Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titlePrepare VM guest build environment


Code Block
languagebash
themeMidnight
titleUpdate & Upgrade system
apt-get update
apt-get upgrade


Code Block
languagebash
themeMidnight
titleInstall build tools
apt-get install build-essential linux-headers-amd64 libpcap-dev



Expand
titleCompile freeRouter binary net-tools


Code Block
languagebash
themeMidnight
titleCreate build environment
mkdir ~/freeRouter-build
cd ~/freeRouter-build
git clone https://github.com/mc36/freeRouter
cd freeRouter/misc/native
mkdir ../../binTmp/


Code Block
languagebash
themeMidnight
titlecompile binary tools
./c.sh
cd ../../binTmp/
mv *.bin ~/freeRouter/bin


...