Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Running the installer

Please run the installer to install Unimus on your system:

bash <(curl -s https://unimus.net/download/deb/install.sh)

Security note: it is dangerous running unknown scripts from the internet.
Please always review the script source before running it on your machines. 

After the installer finishes, you can access Unimus at:
http://localhost:8085/
(substitute 'localhost' for the address of your Unimus server) 

We recommend taking a look at this article on how to configure Unimus:
Configuration wizard

Installing Java

On many newer distributions, you can simply do

apt-get install openjdk-8-jre

 

However, if your distribution doesn't have Java 8 in the default repositories, you can add Oracle repos.

Ubuntu 12 / 14 / 15 / 16

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer

Debian 8 Jessie

echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee /etc/apt/sources.list.d/webupd8team-java.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
apt-get update
apt-get install oracle-java8-installer

Debian 7 Wheezy

echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee /etc/apt/sources.list.d/webupd8team-java.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
apt-get update
apt-get install oracle-java8-installer
  • No labels