Page 1 of 1

Procedure to install CMX on Orange Pi Lite with Armbian

Posted: Sun 02 Oct 2016 9:01 pm
by icnmfabro
The Orange Pi Lite kit purchased on Aliexpress:
1) Orange Pi Lite with integrated WiFi.
2) Case for Orange Pi Lite.
3) Power supply 3A.
Site: http://www.aliexpress.com

                                            
Run the Armbian image downloads for Orange Pi Lite
(Armbian_5.20_Orangepilite_Debian_jessie_3.4.112_desktop or later)
from the following site: http://www.orangepi.org/downloadresources/


Install the image of Armbian on SD card by following the instructions
listed: http://docs.armbian.com/User-Guide_Getting-Started/.
For those with Microsoft Windows do the utility downloads 'Win32DiskImager' from
following site: https://sourceforge.net/projects/win32diskimager/.
With this utility you can write the image of Armbian on your SD card.

During the first start of Armbian you can already create the 'pi' user, if you do not
you have created during the operating system setup, open a
terminal and at the command prompt, type:

RUN sudo adduser pi


Open a terminal and do the upgrade of the operating system by entering these commands
at the prompt:

RUN sudo apt-get update && apt-get upgrade


Add your language to Armbian distribution being careful not
clear the English language:

RUN sudo dpkg-reconfigure locales

                                                                                      
Install mono ver. 4.0.5.1:
     
RUN sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF

RUN sudo echo "deb http://download.mono-project.com/repo/debian wheezy/snapshots/4.0.5.1 main"> /etc/apt/sources.list.d/mono-xamarin.list

RUN sudo echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list

RUN sudo echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list

RUN sudo apt-get update

install mono with the command:

RUN sudo apt-get install mono-complete


Run the link to the library 'libudev.so.0' with the command:

RUN sudo ln -s /lib/arm-linux-gnueabihf/libudev.so.1 /lib/arm-linux-gnueabihf/libudev.so.0


Now you are ready to install Cumulus MX in the user 'pi'.

Written by: Massimiliano Neri.

Re: Procedure to install CMX on Orange Pi Lite with Armbian

Posted: Sun 29 Jan 2017 10:16 pm
by icnmfabro
Errata corrige:

The first line contains the Mono 4.0.5.1 repository contained spaces in the directory, doing a copy and paste of the line on a linux terminal was displayed an error and did not lead to complete the installation.
I modified the main post eliminating these spaces.