Last active
March 15, 2018 11:31
-
-
Save herberthamaral/b05065498918073b76ad to your computer and use it in GitHub Desktop.
Install mono-complete from xamarin repositories on CentOS 7.1 x64 (probably works for other versions)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "[xamarin]" > /etc/yum.repos.d/xamarin.repo | |
echo "name=Xamarin" >> /etc/yum.repos.d/xamarin.repo | |
echo "baseurl=http://download.mono-project.com/repo/centos/" >> /etc/yum.repos.d/xamarin.repo | |
echo "enabled=1" >> /etc/yum.repos.d/xamarin.repo | |
echo "gpgcheck=1" >> /etc/yum.repos.d/xamarin.repo | |
echo "gpgkey=http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF" >> /etc/yum.repos.d/xamarin.repo | |
yum update | |
yum install mono-complete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I needed to add
rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"
as well in order to get it to work on "CentOS Linux release 7.4.1708 (Core)"