### Install Omada Controller from .tar.gz on Linux Source: https://www.tp-link.com/us/user-guides/omada-sdn-software-controller/chapter-2-get-started-with-omada-sdn-controller Installs the Omada Software Controller from a .tar.gz archive on a Linux system. It requires root privileges, extraction of the archive, and execution of the install script. ```bash sudo bash ./install.sh ``` -------------------------------- ### Install Omada Controller from .deb on Linux Source: https://www.tp-link.com/us/user-guides/omada-sdn-software-controller/chapter-2-get-started-with-omada-sdn-controller Installs the Omada Software Controller from a .deb package on a Debian-based Linux system. This command uses dpkg for installation and can be followed by apt-fix-broken install to resolve missing dependencies. ```bash dpkg -i Omada_Controller_v4.2.8_linux_x64.deb apt-fix-broken install ``` -------------------------------- ### Install Java 8 on Ubuntu Source: https://www.tp-link.com/us/user-guides/omada-sdn-software-controller/chapter-2-get-started-with-omada-sdn-controller Installs the headless version of Java 8 Runtime Environment on Ubuntu systems using the apt-get package manager. This is a prerequisite for the Omada Software Controller. ```bash apt-get install openjdk-8-jre-headless ```