🦦 chris_cadev notes

Search IconIcon to open search

install mono on ubuntu

Last updated July 27, 2022.

#tech/bash #unity #os/ubuntu


# install mono on ubuntu

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#install pre-reqs
sudo apt install gnupg ca-certificates

#add key
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF

#add repo
echo "deb [arch=amd64] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list

#update package list
sudo apt-get update

#install mono
sudo apt update -y

#optional - show package
sudo apt list --installed | grep mono

# References

# author

mikenizo808

# position

https://github.com/mikenizo808/Quick-Setup-for-Unity3D-on-Ubuntu-20.04-LTS#install-mono-by-microsoft at ubuntu x unity quick setup


Interactive Graph