Ubiquiti UniFi Controller auf Ubuntu installieren

Der Link zum aktuell gültigen APT-Repository und der Installationsvorgehensweise befindet sich hier in der Ubiquiti UniFi Community.

  1. add /etc/apt/sources.list.d/100-ubnt.list (or edit /etc/apt/sources.list)
    ## Debian/Ubuntu
    # stable => unifi4
    # deb http://www.ubnt.com/downloads/unifi/debian unifi4 ubiquiti
    deb http://www.ubnt.com/downloads/unifi/debian stable ubiquiti
    
    # oldstable => unifi3
    # deb http://www.ubnt.com/downloads/unifi/debian unifi3 ubiquiti
    # deb http://www.ubnt.com/downloads/unifi/debian oldstable ubiquiti
  2. add GPG Key
    # for Ubiquiti
    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv C0A52C50
    
    # for mongo-10gen [optional]
    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
    
    # or over HTTP by using hkp://keyserver.ubuntu.com:80
  3. update, install, and upgrade
    # retrieve the latest package information
    sudo apt-get update
    
    # install/upgrade unifi-controller
    sudo apt-get install unifi

Upgrade von Airvision2 auf Unifi-Video auf Ubuntu

Die Aktualisierung einer bestehenden Ubiquity AirVision Installation auf Unifi Video auf Ubuntu ist relativ einfach machbar.

Vorgehensweise wie folgt:

Installation des aktuellen Public Keys für das Unifi Video APT Repository.

wget -O - http://www.ubnt.com/downloads/unifi-video/apt/unifi-video.gpg.key | sudo apt-key add -

Den Platzhalter „<PLATFORM>“ im nächsten Befehl entsprechend der eingesetzten Ubuntu Version ersetzen:

  • wheezy – for Debian 7.x
  • precise – for Ubuntu 12.04
  • saucy – for Ubuntu 13.10
  • trusty – for Ubuntu 14.04
sudo sh -c 'echo "deb [arch=amd64] http://www.ubnt.com/downloads/unifi-video/apt <PLATFORM> ubiquiti" > /etc/apt/sources.list.d/unifi-video.list'

Das neu hinzugefügte Repository Verzeichnis herunterladen und das Paket unifi-video installieren.

sudo apt-get update
sudo apt-get install unifi-video

Das Paket deinstalliert auch gleich das veraltete airvision2 Paket und macht alles schick.

Quelle:

http://community.ubnt.com/t5/UniFi-Video-Blog/UniFi-Video-3-0-5-amp-UVC-AirCam-3-0-7-Release/ba-p/882264