Working version of mono
Posted: Sun 06 May 2018 8:42 am
The main problem seems to be that requests to download mono default to the latest version, and the old versions we need are no longer on the mono website.
Fortunately, there are working versions stored elsewhere.
This works for me installing it on a Raspberry Pi 3 B+. Then can transfer the SD card to the Raspberry Pi Zero W which is attached to my Weather station. (Pi Zero W is perfectly powerful enough to be capable of running Cumulus, but installation can take ages due to slower processor etc, so I prefer to set up on a faster RPi). As it runs on RPi3 and PiZero, I guess it will be OK with RPi1 and RPi2 also.
The following gives mono v3.10 and works for me. Also has an advantage of not needing the very long delay after sudo apt-get install ...
First, remove old versions of mono if needed (it's complicated - see the following post)
then
cd /var/cache/apt/archives
sudo wget https://sourceforge.net/projects/mono31 ... b/download
This saves mono in current directory with filename download, so need to change the filename
sudo mv download mono_3.10-armhf.deb
sudo dpkg -i mono_3.10-armhf.deb
and that's it!
To check mono version, can use
mono -V
but for an unknown reason that doesn't work until after reboot. Don't worry - mono IS installed
Fortunately, there are working versions stored elsewhere.
This works for me installing it on a Raspberry Pi 3 B+. Then can transfer the SD card to the Raspberry Pi Zero W which is attached to my Weather station. (Pi Zero W is perfectly powerful enough to be capable of running Cumulus, but installation can take ages due to slower processor etc, so I prefer to set up on a faster RPi). As it runs on RPi3 and PiZero, I guess it will be OK with RPi1 and RPi2 also.
The following gives mono v3.10 and works for me. Also has an advantage of not needing the very long delay after sudo apt-get install ...
First, remove old versions of mono if needed (it's complicated - see the following post)
then
cd /var/cache/apt/archives
sudo wget https://sourceforge.net/projects/mono31 ... b/download
This saves mono in current directory with filename download, so need to change the filename
sudo mv download mono_3.10-armhf.deb
sudo dpkg -i mono_3.10-armhf.deb
and that's it!
To check mono version, can use
mono -V
but for an unknown reason that doesn't work until after reboot. Don't worry - mono IS installed