diff --git a/articles/guides/Limnoria.html b/articles/guides/Limnoria.html new file mode 100644 index 0000000..ea66425 --- /dev/null +++ b/articles/guides/Limnoria.html @@ -0,0 +1,33 @@ + + + + + +Installing & running Limnoria. + + + + +
+Sitemap +
+ +

Installing

+

There are three ways to install Limnoria depending on your operating system. If you are on Debian-based Linux distribution e.g. Debian, *Ubuntu you can install the Debian package. Or then you can install from source which should work on all other OSes too (at least Mac OS X, I don't have successful experience with Windows) and you can also install for current user only.

+

With the Debian package

+

This method requires root access.

+

First become root by running

+
+

sudo su

+
+

Then download the Debian package. Here you have to choice do you install the stable version or testing version.

+

Replace "VERSIONHERE" with "master" to get stable version or "testing" to get unstable version.

+
wget http://compiler.progval.net/limnoria-VERSIONHERE-HEAD.deb
+dpkg -i limnoria-VERSIONHERE-HEAD.deb
+apt-get install -f
+

The "apt-get install -f" tries to fix broken packages by downloading and installing missing depedencies if there are them.

+

Upgrading

+

To upgrade just run the steps above. Remember that the Debian packages are daily builds, so they are changed every day. You can see the latest change on [compiler.progval.net]. The "-HEAD" packages are always the most recent version.

+ + + diff --git a/articles/guides/Limnoria.html.md b/articles/guides/Limnoria.html.md new file mode 100644 index 0000000..a376f00 --- /dev/null +++ b/articles/guides/Limnoria.html.md @@ -0,0 +1,46 @@ + + + + + + + + + +Installing & running Limnoria. + + + +
+[Sitemap](../../sitemap/sitemap.html) +
+ +# Installing + +There are three ways to install Limnoria depending on your operating system. If you are on Debian-based Linux distribution e.g. Debian, *Ubuntu you can install the Debian package. Or then you can install from source which should work on all other OSes too (at least Mac OS X, I don't have successful experience with Windows) and you can also install for current user only. + +## With the Debian package + +This method requires root access. + +First become root by running + +> sudo su + +Then download the Debian package. Here you have to choice do you install the stable version or testing version. + +Replace "VERSIONHERE" with "master" to get stable version or "testing" to get unstable version. + +``` +wget http://compiler.progval.net/limnoria-VERSIONHERE-HEAD.deb +dpkg -i limnoria-VERSIONHERE-HEAD.deb +apt-get install -f +``` + +The "apt-get install -f" tries to fix broken packages by downloading and installing missing depedencies if there are them. + +### Upgrading + +To upgrade just run the steps above. Remember that the Debian packages are daily builds, so they are changed every day. You can see the latest change on [compiler.progval.net]. The "-HEAD" packages are always the most recent version. + +