Versions Compared

Key

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

...

Expand
titleGet your system up to date
  • Start & connect your VM as root 
  • Update your VM
Code Block
languagebash
themeMidnight
apt-get update
apt-get upgrade
  • Install operating system default java package
Code Block
languagebash
themeMidnight
apt-get install default-jre-headless 



Expand
titleInstall operating system java package

In this example, we won't recompile freeRouter so installing headless java runtime is enough. This set up is recommended for production environment in order to ensure minimal software footprint

Code Block
languagebash
themeMidnight
apt-get install default-jre-headless --no-install-recommends


...