Skip to content

Installation on Linux

Michael Brown edited this page Jan 25, 2022 · 5 revisions

Unix Environments Installation

Binner supports pre-built releases for several different unix environments.

Installation on Ubuntu

Download the latest Binner release GitHub release for Ubuntu (Binner_ubuntu.14.04-x64-VERSION.tar.gz).

// extract the archive
tar zxfp ./Binner_ubuntu.14.04-x64-VERSION.tar.gz

// to install as a service
sudo chmod +x ./install-as-service.sh
sudo ./install-as-service.sh

// or you can just run directly
sudo chmod +x ./Binner.Web
./Binner.Web

Now you should be able to view Binner by visiting http://localhost:8090 in your web browser.

Installation on Raspberry Pi (Raspberry Pi OS / Raspbian)

Download the latest Binner release GitHub release for Linux-ARM (Binner_linux-arm-VERSION.tar.gz).

// extract the archive
tar zxfp Binner_linux-arm-VERSION.tar.gz

// to install as a service
sudo chmod +x ./install-as-service.sh
sudo ./install-as-service.sh

// or you can just run directly
sudo chmod +x ./Binner.Web
./Binner.Web

Now you should be able to view Binner by visiting http://localhost:8090 in your web browser.

Installation on other Linux distros

Download the latest Binner release GitHub release for Linux-x64 (Binner_linux-x64-VERSION.tar.gz).

// extract the archive
tar zxfp ./Binner_linux-x64-VERSION.tar.gz

// to install as a service
sudo chmod +x ./install-as-service.sh
sudo ./install-as-service.sh

// or you can just run directly
sudo chmod +x ./Binner.Web
./Binner.Web

Now you should be able to view Binner by visiting http://localhost:8090 in your web browser.

Installation on OSX 10+

Download the latest Binner release GitHub release for OSX (Binner_osx.10.12-x64-VERSION.tar.gz)

// extract the archive
tar zxfp ./Binner_osx.10.12-x64-VERSION.tar.gz

// to install as a service
sudo chmod +x ./install-as-service.sh
sudo ./install-as-service.sh

// or you can just run directly
sudo chmod +x ./Binner.Web
./Binner.Web

Now you should be able to view Binner by visiting http://localhost:8090 in your web browser.