Welcome to the Cumulus Support forum.

Latest Cumulus MX V3 release 3.28.6 (build 3283) - 21 March 2024

Cumulus MX V4 beta test release 4.0.0 (build 4019) - 03 April 2024

Legacy Cumulus 1 release 1.9.4 (build 1099) - 28 November 2014
(a patch is available for 1.9.4 build 1099 that extends the date range of drop-down menus to 2030)

Download the Software (Cumulus MX / Cumulus 1 and other related items) from the Wiki

Procedure to install CMX on Orange Pi Lite with Armbian

Topics about the Beta trials up to Build 3043, the last build by Cumulus's founder Steve Loft. It was by this time way out of Beta but Steve wanted to keep it that way until he made a decision on his and Cumulus's future.

Moderator: mcrossley

Locked
icnmfabro
Posts: 54
Joined: Wed 25 May 2016 2:18 pm
Weather Station: wh3080
Operating System: Raspian - Armbian and Windows
Location: Fabro
Contact:

Procedure to install CMX on Orange Pi Lite with Armbian

Post 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.
You do not have the required permissions to view the files attached to this post.
icnmfabro
Posts: 54
Joined: Wed 25 May 2016 2:18 pm
Weather Station: wh3080
Operating System: Raspian - Armbian and Windows
Location: Fabro
Contact:

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

Post 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.
Locked