Skip to content

Instantly share code, notes, and snippets.

@CarstenKoenig
Created October 7, 2014 12:08
Show Gist options
  • Save CarstenKoenig/e4032f65f948e45f3ae8 to your computer and use it in GitHub Desktop.
Save CarstenKoenig/e4032f65f948e45f3ae8 to your computer and use it in GitHub Desktop.
Markdown in Ubuntu installieren

Klonen von Github (inkl. Submodulen)

git clone https://github.com/mono/monodevelop.git
cd monodevelop
git submodule update --init --recursive

Das dauert eine Weile....

Konfigurieren

./configure --profile=stable

Das bringt bei mir einen Fehler:

configure: error: Cannot enable GNOME platform without gnome-sharp-2.0

Also her damit

sudo apt-get install gnome-sharp2

und nochmal:

./configure --profile=stable

hat jetzt funktioniert (einfach die fehlenden Packete suchen / installieren, zur Not mit Synaptic, wenn der Name nicht ganz klar ist).

Build

Nächster Schritt: make:

make

Das geht schief weil nuget Packete nicht bekommt:

WARNUNG: Error getting response stream (Write: The authentication or decryption has failed.)

Hier falle ich immer rein - es fehlen die Mozilla LXR Zertifikate. Die kann man mit

mozroots --import --sync

holen - also machen!

Und nochmal make:

make

Jetzt lädt Nuget brav die fehlenden Packete ... gut!

Das dauert jetzt natürlich wieder...

Installieren

Ist eigentlich optional, aber ich möchte das Programm ja nutzen

sudo make install

fertig!

Aufräumen (optional)

Ich brauche das Repository nicht mehr also:

cd ..
rm monodevelop -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment