<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Markanjio</id>
		<title>Ryzom Forge Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Markanjio"/>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/wiki/Special:Contributions/Markanjio"/>
		<updated>2026-06-01T08:11:01Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.29.1</generator>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4493</id>
		<title>Installation Linux Générique</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4493"/>
				<updated>2017-06-02T13:56:23Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: When using wget, specify the output file name to prevent using &amp;quot;download&amp;quot; as the file name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|FR|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
Ce tutoriel couvre l'installation et la configuration du client Ryzom lui-même. Il ne documente pas comment installer les dépendances, car cela peut changer d'une distribution à l'autre.&lt;br /&gt;
&lt;br /&gt;
== Depuis les archives officielles ==&lt;br /&gt;
&lt;br /&gt;
Tout d'abord, vous aurez sans doute besoin d'installer &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; et &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Ensuite, récupérons les archives officielles à l'aide des commandes suivantes :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget -O &amp;quot;ryzom_live_client_linux.7z&amp;quot; &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z/download&amp;quot;&lt;br /&gt;
wget -O &amp;quot;ryzom_live_data.7z&amp;quot; &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_data.7z/download&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux.7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Script de démarrage (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
Si vous n'en avez pas déjà un, créez un dossier personnel où l'on peut stocker des exécutables :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
source &amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Créez le fichier &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; avec le contenu suivant tout en remplaçant &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; par votre nom de compte.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Rendons maintenant ce script exécutable :&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vous pouvez maintenant lancer Ryzom avec la commande &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt;. Pour lancer Ryzom avec un autre compte, utilisez simplement &amp;lt;code&amp;gt;ryzom nom_du_compte&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Gestion des mots de passe (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] peut être utilisé pour gérer le mot de passe de votre compte. Le script de démarrage en fait déjà usage s'il est installé, il vous suffit de stocker votre mot de passe sous &amp;lt;code&amp;gt;ryzom.com/nom_du_compte&amp;lt;/code&amp;gt;. Au lancement, votre mot de passe sera mis dans le presse-papier durant quelques secondes afin que vous puissiez simplement le coller dans le champ. Bien entendu, vous pouvez stocker les mots de passes de différents comptes en suivant le même principe.&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:FR]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4492</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4492"/>
				<updated>2017-06-02T13:56:01Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: When using wget, specify the output file name to prevent using &amp;quot;download&amp;quot; as the file name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== From the official archive ==&lt;br /&gt;
&lt;br /&gt;
First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget -O &amp;quot;ryzom_live_client_linux.7z&amp;quot; &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z/download&amp;quot;&lt;br /&gt;
wget -O &amp;quot;ryzom_live_data.7z&amp;quot; &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_data.7z/download&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux.7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Starting script (optional) ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have one, create a custom directory where you can store executable files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
source &amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; file with the following content and change &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; with your account name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now set the starting script executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command. To start Ryzom with another account, you can use the &amp;lt;code&amp;gt;ryzom account_name&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&lt;br /&gt;
== Password management (optional) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. The starting script already handles it providing you store your password under &amp;lt;code&amp;gt;ryzom.com/account_name&amp;lt;/code&amp;gt;. At startup, your password will be in your clipboard for a few seconds so you can simply paste it into the field. Obviously, you can store passwords for multiple accounts using the same pattern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:EN]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4491</id>
		<title>Installation Linux Générique</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4491"/>
				<updated>2017-05-22T19:21:52Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: /* Script de démarrage (optionnel) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|FR|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
Ce tutoriel couvre l'installation et la configuration du client Ryzom lui-même. Il ne documente pas comment installer les dépendances, car cela peut changer d'une distribution à l'autre.&lt;br /&gt;
&lt;br /&gt;
== Depuis les archives officielles ==&lt;br /&gt;
&lt;br /&gt;
Tout d'abord, vous aurez sans doute besoin d'installer &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; et &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Ensuite, récupérons les archives officielles à l'aide des commandes suivantes :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z/download&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_data.7z/download&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Script de démarrage (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
Si vous n'en avez pas déjà un, créez un dossier personnel où l'on peut stocker des exécutables :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
source &amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Créez le fichier &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; avec le contenu suivant tout en remplaçant &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; par votre nom de compte.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Rendons maintenant ce script exécutable :&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vous pouvez maintenant lancer Ryzom avec la commande &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt;. Pour lancer Ryzom avec un autre compte, utilisez simplement &amp;lt;code&amp;gt;ryzom nom_du_compte&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Gestion des mots de passe (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] peut être utilisé pour gérer le mot de passe de votre compte. Le script de démarrage en fait déjà usage s'il est installé, il vous suffit de stocker votre mot de passe sous &amp;lt;code&amp;gt;ryzom.com/nom_du_compte&amp;lt;/code&amp;gt;. Au lancement, votre mot de passe sera mis dans le presse-papier durant quelques secondes afin que vous puissiez simplement le coller dans le champ. Bien entendu, vous pouvez stocker les mots de passes de différents comptes en suivant le même principe.&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:FR]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4490</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4490"/>
				<updated>2017-05-22T19:21:36Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: /* Starting script (optional) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== From the official archive ==&lt;br /&gt;
&lt;br /&gt;
First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z/download&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_data.7z/download&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Starting script (optional) ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have one, create a custom directory where you can store executable files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
source &amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; file with the following content and change &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; with your account name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now set the starting script executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command. To start Ryzom with another account, you can use the &amp;lt;code&amp;gt;ryzom account_name&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&lt;br /&gt;
== Password management (optional) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. The starting script already handles it providing you store your password under &amp;lt;code&amp;gt;ryzom.com/account_name&amp;lt;/code&amp;gt;. At startup, your password will be in your clipboard for a few seconds so you can simply paste it into the field. Obviously, you can store passwords for multiple accounts using the same pattern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:EN]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4254</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4254"/>
				<updated>2016-10-29T17:31:59Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: /* Auto-login using pass (optional) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== From the official archive ==&lt;br /&gt;
&lt;br /&gt;
First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z/download&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_data.7z/download&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Starting script (optional) ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have one, create a custom directory where you can store executable files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; file with the following content and change &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; with your account name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now set the starting script executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command. To start Ryzom with another account, you can use the &amp;lt;code&amp;gt;ryzom account_name&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&lt;br /&gt;
== Password management (optional) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. The starting script already handles it providing you store your password under &amp;lt;code&amp;gt;ryzom.com/account_name&amp;lt;/code&amp;gt;. At startup, your password will be in your clipboard for a few seconds so you can simply paste it into the field. Obviously, you can store passwords for multiple accounts using the same pattern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:EN]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4253</id>
		<title>Installation Linux Générique</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4253"/>
				<updated>2016-10-29T17:31:37Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: /* Auto-login using pass (optionnel) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|FR|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
Ce tutoriel couvre l'installation et la configuration du client Ryzom lui-même. Il ne documente pas comment installer les dépendances, car cela peut changer d'une distribution à l'autre.&lt;br /&gt;
&lt;br /&gt;
== Depuis les archives officielles ==&lt;br /&gt;
&lt;br /&gt;
Tout d'abord, vous aurez sans doute besoin d'installer &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; et &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Ensuite, récupérons les archives officielles à l'aide des commandes suivantes :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z/download&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_data.7z/download&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Script de démarrage (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
Si vous n'en avez pas déjà un, créez un dossier personnel où l'on peut stocker des exécutables :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Créez le fichier &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; avec le contenu suivant tout en remplaçant &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; par votre nom de compte.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Rendons maintenant ce script exécutable :&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vous pouvez maintenant lancer Ryzom avec la commande &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt;. Pour lancer Ryzom avec un autre compte, utilisez simplement &amp;lt;code&amp;gt;ryzom nom_du_compte&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Gestion des mots de passe (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] peut être utilisé pour gérer le mot de passe de votre compte. Le script de démarrage en fait déjà usage s'il est installé, il vous suffit de stocker votre mot de passe sous &amp;lt;code&amp;gt;ryzom.com/nom_du_compte&amp;lt;/code&amp;gt;. Au lancement, votre mot de passe sera mis dans le presse-papier durant quelques secondes afin que vous puissiez simplement le coller dans le champ. Bien entendu, vous pouvez stocker les mots de passes de différents comptes en suivant le même principe.&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:FR]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4252</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4252"/>
				<updated>2016-10-29T17:22:39Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Mirrors update&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== From the official archive ==&lt;br /&gt;
&lt;br /&gt;
First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z/download&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_data.7z/download&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Starting script (optional) ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have one, create a custom directory where you can store executable files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; file with the following content and change &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; with your account name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now set the starting script executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command. To start Ryzom with another account, you can use the &amp;lt;code&amp;gt;ryzom account_name&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using pass (optional) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. The starting script already handles it providing you store your password under &amp;lt;code&amp;gt;ryzom.com/account_name&amp;lt;/code&amp;gt;. At startup, your password will be in your clipboard for a few seconds so you can simply paste it into the field. Obviously, you can store passwords for multiple accounts using the same pattern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:EN]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4251</id>
		<title>Installation Linux Générique</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4251"/>
				<updated>2016-10-29T17:22:10Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Update des miroirs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|FR|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
Ce tutoriel couvre l'installation et la configuration du client Ryzom lui-même. Il ne documente pas comment installer les dépendances, car cela peut changer d'une distribution à l'autre.&lt;br /&gt;
&lt;br /&gt;
== Depuis les archives officielles ==&lt;br /&gt;
&lt;br /&gt;
Tout d'abord, vous aurez sans doute besoin d'installer &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; et &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Ensuite, récupérons les archives officielles à l'aide des commandes suivantes :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z/download&amp;quot;&lt;br /&gt;
wget &amp;quot;https://sourceforge.net/projects/ryzom/files/installer/ryzom_live_data.7z/download&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Script de démarrage (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
Si vous n'en avez pas déjà un, créez un dossier personnel où l'on peut stocker des exécutables :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Créez le fichier &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; avec le contenu suivant tout en remplaçant &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; par votre nom de compte.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Rendons maintenant ce script exécutable :&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vous pouvez maintenant lancer Ryzom avec la commande &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt;. Pour lancer Ryzom avec un autre compte, utilisez simplement &amp;lt;code&amp;gt;ryzom nom_du_compte&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using pass (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] peut être utilisé pour gérer le mot de passe de votre compte. Le script de démarrage en fait déjà usage s'il est installé, il vous suffit de stocker votre mot de passe sous &amp;lt;code&amp;gt;ryzom.com/nom_du_compte&amp;lt;/code&amp;gt;. Au lancement, votre mot de passe sera mis dans le presse-papier durant quelques secondes afin que vous puissiez simplement le coller dans le champ. Bien entendu, vous pouvez stocker les mots de passes de différents comptes en suivant le même principe.&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:FR]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4250</id>
		<title>Installation Linux Générique</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Installation_Linux_G%C3%A9n%C3%A9rique&amp;diff=4250"/>
				<updated>2016-10-29T17:15:38Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Mise à jour pour la v3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|FR|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
Ce tutoriel couvre l'installation et la configuration du client Ryzom lui-même. Il ne documente pas comment installer les dépendances, car cela peut changer d'une distribution à l'autre.&lt;br /&gt;
&lt;br /&gt;
== Depuis les archives officielles ==&lt;br /&gt;
&lt;br /&gt;
Tout d'abord, vous aurez sans doute besoin d'installer &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; et &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Ensuite, récupérons les archives officielles à l'aide des commandes suivantes :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_data.7z&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Script de démarrage (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
Si vous n'en avez pas déjà un, créez un dossier personnel où l'on peut stocker des exécutables :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Créez le fichier &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; avec le contenu suivant tout en remplaçant &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; par votre nom de compte.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Rendons maintenant ce script exécutable :&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vous pouvez maintenant lancer Ryzom avec la commande &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt;. Pour lancer Ryzom avec un autre compte, utilisez simplement &amp;lt;code&amp;gt;ryzom nom_du_compte&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using pass (optionnel) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] peut être utilisé pour gérer le mot de passe de votre compte. Le script de démarrage en fait déjà usage s'il est installé, il vous suffit de stocker votre mot de passe sous &amp;lt;code&amp;gt;ryzom.com/nom_du_compte&amp;lt;/code&amp;gt;. Au lancement, votre mot de passe sera mis dans le presse-papier durant quelques secondes afin que vous puissiez simplement le coller dans le champ. Bien entendu, vous pouvez stocker les mots de passes de différents comptes en suivant le même principe.&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:FR]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4249</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4249"/>
				<updated>2016-10-29T17:12:27Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: /* Auto-login using pass */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== From the official archive ==&lt;br /&gt;
&lt;br /&gt;
First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_data.7z&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Starting script (optional) ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have one, create a custom directory where you can store executable files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; file with the following content and change &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; with your account name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now set the starting script executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command. To start Ryzom with another account, you can use the &amp;lt;code&amp;gt;ryzom account_name&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using pass (optional) ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. The starting script already handles it providing you store your password under &amp;lt;code&amp;gt;ryzom.com/account_name&amp;lt;/code&amp;gt;. At startup, your password will be in your clipboard for a few seconds so you can simply paste it into the field. Obviously, you can store passwords for multiple accounts using the same pattern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:EN]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4248</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4248"/>
				<updated>2016-10-29T17:10:28Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: /* Starting script (optional) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== From the official archive ==&lt;br /&gt;
&lt;br /&gt;
First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_data.7z&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Starting script (optional) ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have one, create a custom directory where you can store executable files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; file with the following content and change &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; with your account name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now set the starting script executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command. To start Ryzom with another account, you can use the &amp;lt;code&amp;gt;ryzom account_name&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using pass ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. The starting script already handles it providing you store your password under &amp;lt;code&amp;gt;ryzom.com/account_name&amp;lt;/code&amp;gt;. At startup, your password will be in your clipboard for a few seconds so you can simply paste it into the field. Obviously, you can store passwords for multiple accounts using the same pattern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:EN]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4247</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4247"/>
				<updated>2016-10-29T17:04:26Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: No, this step is mandatory&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== From the official archive ==&lt;br /&gt;
&lt;br /&gt;
First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_data.7z&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Starting script (optional) ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have one, create a custom directory where you can store executable files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; file with the following content and change &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; with your account name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now set the starting script executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom with an automatic login using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command. To start Ryzom with another account, you can use the &amp;lt;code&amp;gt;ryzom account_name&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using pass ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. The starting script already handles it providing you store your password under &amp;lt;code&amp;gt;ryzom.com/account_name&amp;lt;/code&amp;gt;. At startup, your password will be in your clipboard for a few seconds so you can simply paste it into the field. Obviously, you can store passwords for multiple accounts using the same pattern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:EN]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4246</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=4246"/>
				<updated>2016-10-29T16:58:16Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Major update for v3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|Generisches Linux Installation|Linux generic installation|Instalación de Linux genérico|Installation Linux Générique|Общий Установка Linux}}&lt;br /&gt;
{{toTrad|DE}}&lt;br /&gt;
{{toTrad|ES}}&lt;br /&gt;
{{toTrad|RU}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== From the official archive ==&lt;br /&gt;
&lt;br /&gt;
This is optional but highly recommended in order to speed up the installation process and spare your internet connection. First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot;&lt;br /&gt;
wget &amp;quot;http://netix.dl.sourceforge.net/project/ryzom/installer/ryzom_live_data.7z&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
7z x &amp;quot;ryzom_live_data.7z&amp;quot; -o&amp;quot;$HOME/ryzom/&amp;quot;&lt;br /&gt;
rm -f &amp;quot;ryzom_live_client_linux$(test $(uname -m) = 'x86_64' &amp;amp;&amp;amp; echo 64 || echo 32).7z&amp;quot; &amp;quot;ryzom_live_data.7z&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Starting script (optional) ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have one, create a custom directory where you can store executable files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/bin&amp;quot;&lt;br /&gt;
[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
echo '[[ &amp;quot;:$PATH:&amp;quot; == *&amp;quot;:$HOME/bin:&amp;quot;* ]] || export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;' &amp;gt;&amp;gt;&amp;quot;$HOME/.bashrc&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the &amp;lt;code&amp;gt;$HOME/bin/ryzom&amp;lt;/code&amp;gt; file with the following content and change &amp;lt;code&amp;gt;your_account_name_goes_here&amp;lt;/code&amp;gt; with your account name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
set -euo pipefail&lt;br /&gt;
IFS=$'\n\t'&lt;br /&gt;
&lt;br /&gt;
DEFAULT_ACCOUNT=&amp;quot;your_account_name_goes_here&amp;quot;&lt;br /&gt;
ACCOUNT=&amp;quot;$DEFAULT_ACCOUNT&amp;quot;&lt;br /&gt;
RYZOM_DOMAIN=&amp;quot;ryzom.com&amp;quot;&lt;br /&gt;
RYZOM_DIR=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
RYZOM_CLIENT=&amp;quot;ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ $# -ge 1 ]; then&lt;br /&gt;
    ACCOUNT=&amp;quot;$1&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
hash pass 2&amp;gt;/dev/null &amp;amp;&amp;amp; pass -c &amp;quot;$RYZOM_DOMAIN/$ACCOUNT&amp;quot;&lt;br /&gt;
cd &amp;quot;$RYZOM_DIR&amp;quot;&lt;br /&gt;
&amp;quot;$RYZOM_DIR/$RYZOM_CLIENT&amp;quot; &amp;quot;$ACCOUNT&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now set the starting script executable:&lt;br /&gt;
&amp;lt;pre&amp;gt;chmod a+x &amp;quot;$HOME/bin/ryzom&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom with an automatic login using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command. To start Ryzom with another account, you can use the &amp;lt;code&amp;gt;ryzom account_name&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using pass ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. The starting script already handles it providing you store your password under &amp;lt;code&amp;gt;ryzom.com/account_name&amp;lt;/code&amp;gt;. At startup, your password will be in your clipboard for a few seconds so you can simply paste it into the field. Obviously, you can store passwords for multiple accounts using the same pattern.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{In_Category|Linux}}&lt;br /&gt;
{{TPInWikiRyzom‎}}&lt;br /&gt;
[[Category:Support]]&lt;br /&gt;
[[Category:Linux]] &lt;br /&gt;
[[Category:EN]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=3069</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=3069"/>
				<updated>2014-12-19T21:06:10Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: /* Auto-login using pass */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|DE|{{FULLPAGENAME}}|ES|Installation Linux Générique|RU}}&lt;br /&gt;
&lt;br /&gt;
{{ToTrad|DE|DE translation needed please.}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== Basic installation ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: From the archive (recommended) ===&lt;br /&gt;
&lt;br /&gt;
This is optional but highly recommended in order to speed up the installation process and spare your internet connection. First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget http://freefr.dl.sourceforge.net/project/ryzom/ryzom_client.7z&lt;br /&gt;
7z e ryzom_client.7z -o&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rm ryzom_client.7z&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you are prompted with a message like '''already exists. Overwrite with ryzom/data/exedll.bnp? (Y)es / (N)o / (A)lways / (S)kip all / A(u)to rename all / (Q)uit?''', answer '''A'''. Some components of this archive are out of date, therefore the next step is to synchronize it with the latest version available.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Having an up-to-date directory (required) ===&lt;br /&gt;
&lt;br /&gt;
Install &amp;lt;code&amp;gt;rsync&amp;lt;/code&amp;gt; and use it to get the latest version of Ryzom:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$HOME/ryzom/client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can start the pre-compiled 32bits client with the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;quot;$HOME/ryzom/client/ryzom_client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To keep the directory up to date and start the client more easily, you can use the following script (name it &amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Don't forget to make the script executable using &amp;lt;code&amp;gt;chmod a+x /usr/bin/ryzom&amp;lt;/code&amp;gt;. Now, using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command to start Ryzom.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bleeding edge client (optional) ==&lt;br /&gt;
&lt;br /&gt;
If the pre-compiled 32bits client doesn't suit your needs, you can compile it yourself from the source code. You can find the dependencies and how to install them on most distribution on the [https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux Ryzom Core documentation].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;cd &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
hg clone https://bitbucket.org/ryzom/ryzomcore&lt;br /&gt;
cd ryzomcore&lt;br /&gt;
hg update -c compatibility&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Instead of coming back to this wiki each time you want to compile the Ryzom client, create the following script. It's a good idea to put it in &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# DOC: https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux&lt;br /&gt;
# &lt;br /&gt;
&lt;br /&gt;
set -e&lt;br /&gt;
&lt;br /&gt;
RYHOME=&amp;quot;$HOME/ryzom/ryzomcore/code&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! -d &amp;quot;$RYHOME/build&amp;quot; ]; then&lt;br /&gt;
    mkdir &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
cd &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Updating the code&lt;br /&gt;
hg pull&lt;br /&gt;
hg update&lt;br /&gt;
&lt;br /&gt;
# Ugly hack&lt;br /&gt;
sed -i &amp;quot;s/OPTIONAL/REQUIRED/&amp;quot; &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Let's compile&lt;br /&gt;
cmake -DWITH_NEL_TESTS=OFF -DWITH_NEL_SAMPLES=OFF -DWITH_NEL_TOOLS=OFF -DWITH_RYZOM_SERVER=OFF -DWITH_RYZOM_TOOLS=OFF -DWITH_RYZOM_CLIENT=ON -DWITH_QT=OFF ..&lt;br /&gt;
make -j4&lt;br /&gt;
&lt;br /&gt;
# Reverting the ugly hack&lt;br /&gt;
hg revert &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that you may have to adjust your cmake flags. For example, on ArchLinux, add &amp;lt;code&amp;gt;-DFREETYPE_LIBRARY=/usr/lib/libfreetype.so -DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ -DFREETYPE_INCLUDE_DIRS=/usr/include/freetype2/&amp;lt;/code&amp;gt;. On some distributions, the &amp;quot;ugly hack&amp;quot; part isn't needed.&lt;br /&gt;
&lt;br /&gt;
In order to use the client, we need to change our starting script (&amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
CLIENT_EXE=&amp;quot;$CLIENT_PATH/ryzom_client&amp;quot;&lt;br /&gt;
CLIENT_SAVE=&amp;quot;$CLIENT_EXE.save&amp;quot;&lt;br /&gt;
CLIENT_CUSTOM=&amp;quot;$ROOT_PATH/ryzomcore/code/build/bin/ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_SAVE&amp;quot; ]; then&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_SAVE&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_CUSTOM&amp;quot; ]; then&lt;br /&gt;
	mv &amp;quot;$CLIENT_EXE&amp;quot; &amp;quot;$CLIENT_SAVE&amp;quot;&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_CUSTOM&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And that's it. Please note that:&lt;br /&gt;
* The run script updates only the data.&lt;br /&gt;
* You need to run &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt; manually to compile a new client.&lt;br /&gt;
* The run script will use your custom client only if it's available. Therefore, if you want to use the pre-compiled one, simple move or delete &amp;lt;code&amp;gt;$HOME/ryzom/ryzomcore/code/build/bin/ryzom_client&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using pass ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. In &amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;, replace the last line (&amp;lt;code&amp;gt;./ryzom_client&amp;lt;/code&amp;gt;) by:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;if [ &amp;quot;$1&amp;quot; != &amp;quot;&amp;quot; ]; then&lt;br /&gt;
    ./ryzom_client &amp;quot;$1&amp;quot; $(pass show &amp;quot;ryzom.com/$1&amp;quot;)&lt;br /&gt;
else&lt;br /&gt;
    ./ryzom_client&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Store your account password under &amp;lt;code&amp;gt;ryzom.com/accountname&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;pass insert ryzom.com/accountname&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom with an automatic login using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ryzom accountname&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{TPInWikiRyzom}}&lt;br /&gt;
[[Category:Tutorials]][[Category:EN]][[Category:Linux]] [[Category:Support]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=3068</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=3068"/>
				<updated>2014-12-19T21:04:18Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Adding auto-login using pass&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|DE|{{FULLPAGENAME}}|ES|Installation Linux Générique|RU}}&lt;br /&gt;
&lt;br /&gt;
{{ToTrad|DE|DE translation needed please.}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== Basic installation ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: From the archive (recommended) ===&lt;br /&gt;
&lt;br /&gt;
This is optional but highly recommended in order to speed up the installation process and spare your internet connection. First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget http://freefr.dl.sourceforge.net/project/ryzom/ryzom_client.7z&lt;br /&gt;
7z e ryzom_client.7z -o&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rm ryzom_client.7z&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you are prompted with a message like '''already exists. Overwrite with ryzom/data/exedll.bnp? (Y)es / (N)o / (A)lways / (S)kip all / A(u)to rename all / (Q)uit?''', answer '''A'''. Some components of this archive are out of date, therefore the next step is to synchronize it with the latest version available.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Having an up-to-date directory (required) ===&lt;br /&gt;
&lt;br /&gt;
Install &amp;lt;code&amp;gt;rsync&amp;lt;/code&amp;gt; and use it to get the latest version of Ryzom:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$HOME/ryzom/client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can start the pre-compiled 32bits client with the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;quot;$HOME/ryzom/client/ryzom_client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To keep the directory up to date and start the client more easily, you can use the following script (name it &amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Don't forget to make the script executable using &amp;lt;code&amp;gt;chmod a+x /usr/bin/ryzom&amp;lt;/code&amp;gt;. Now, using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command to start Ryzom.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bleeding edge client (optional) ==&lt;br /&gt;
&lt;br /&gt;
If the pre-compiled 32bits client doesn't suit your needs, you can compile it yourself from the source code. You can find the dependencies and how to install them on most distribution on the [https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux Ryzom Core documentation].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;cd &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
hg clone https://bitbucket.org/ryzom/ryzomcore&lt;br /&gt;
cd ryzomcore&lt;br /&gt;
hg update -c compatibility&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Instead of coming back to this wiki each time you want to compile the Ryzom client, create the following script. It's a good idea to put it in &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# DOC: https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux&lt;br /&gt;
# &lt;br /&gt;
&lt;br /&gt;
set -e&lt;br /&gt;
&lt;br /&gt;
RYHOME=&amp;quot;$HOME/ryzom/ryzomcore/code&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! -d &amp;quot;$RYHOME/build&amp;quot; ]; then&lt;br /&gt;
    mkdir &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
cd &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Updating the code&lt;br /&gt;
hg pull&lt;br /&gt;
hg update&lt;br /&gt;
&lt;br /&gt;
# Ugly hack&lt;br /&gt;
sed -i &amp;quot;s/OPTIONAL/REQUIRED/&amp;quot; &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Let's compile&lt;br /&gt;
cmake -DWITH_NEL_TESTS=OFF -DWITH_NEL_SAMPLES=OFF -DWITH_NEL_TOOLS=OFF -DWITH_RYZOM_SERVER=OFF -DWITH_RYZOM_TOOLS=OFF -DWITH_RYZOM_CLIENT=ON -DWITH_QT=OFF ..&lt;br /&gt;
make -j4&lt;br /&gt;
&lt;br /&gt;
# Reverting the ugly hack&lt;br /&gt;
hg revert &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that you may have to adjust your cmake flags. For example, on ArchLinux, add &amp;lt;code&amp;gt;-DFREETYPE_LIBRARY=/usr/lib/libfreetype.so -DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ -DFREETYPE_INCLUDE_DIRS=/usr/include/freetype2/&amp;lt;/code&amp;gt;. On some distributions, the &amp;quot;ugly hack&amp;quot; part isn't needed.&lt;br /&gt;
&lt;br /&gt;
In order to use the client, we need to change our starting script (&amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
CLIENT_EXE=&amp;quot;$CLIENT_PATH/ryzom_client&amp;quot;&lt;br /&gt;
CLIENT_SAVE=&amp;quot;$CLIENT_EXE.save&amp;quot;&lt;br /&gt;
CLIENT_CUSTOM=&amp;quot;$ROOT_PATH/ryzomcore/code/build/bin/ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_SAVE&amp;quot; ]; then&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_SAVE&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_CUSTOM&amp;quot; ]; then&lt;br /&gt;
	mv &amp;quot;$CLIENT_EXE&amp;quot; &amp;quot;$CLIENT_SAVE&amp;quot;&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_CUSTOM&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And that's it. Please note that:&lt;br /&gt;
* The run script updates only the data.&lt;br /&gt;
* You need to run &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt; manually to compile a new client.&lt;br /&gt;
* The run script will use your custom client only if it's available. Therefore, if you want to use the pre-compiled one, simple move or delete &amp;lt;code&amp;gt;$HOME/ryzom/ryzomcore/code/build/bin/ryzom_client&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Auto-login using with pass ==&lt;br /&gt;
&lt;br /&gt;
[http://www.passwordstore.org/ pass] can be used to handle your account password. In &amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;, replace the last line (&amp;lt;code&amp;gt;./ryzom_client&amp;lt;/code&amp;gt;) by:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;if [ &amp;quot;$1&amp;quot; != &amp;quot;&amp;quot; ]; then&lt;br /&gt;
    ./ryzom_client &amp;quot;$1&amp;quot; $(pass show &amp;quot;ryzom.com/$1&amp;quot;)&lt;br /&gt;
else&lt;br /&gt;
    ./ryzom_client&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Store your account password under &amp;lt;code&amp;gt;ryzom.com/accountname&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;pass insert ryzom.com/accountname&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can now start Ryzom with an automatic login using the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ryzom accountname&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{TPInWikiRyzom}}&lt;br /&gt;
[[Category:Tutorials]][[Category:EN]][[Category:Linux]] [[Category:Support]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=2173</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=2173"/>
				<updated>2014-08-30T10:55:59Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: adding a missing shebang&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|DE|{{FULLPAGENAME}}|ES|Installation Linux Générique|RU}}&lt;br /&gt;
&lt;br /&gt;
{{ToTrad|DE|DE translation needed please.}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== Basic installation ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: From the archive (recommended) ===&lt;br /&gt;
&lt;br /&gt;
This is optional but highly recommended in order to speed up the installation process and spare your internet connection. First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget http://freefr.dl.sourceforge.net/project/ryzom/ryzom_client.7z&lt;br /&gt;
7z e ryzom_client.7z -o&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rm ryzom_client.7z&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you are prompted with a message like '''already exists. Overwrite with ryzom/data/exedll.bnp? (Y)es / (N)o / (A)lways / (S)kip all / A(u)to rename all / (Q)uit?''', answer '''A'''. Some components of this archive are out of date, therefore the next step is to synchronize it with the latest version available.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Having an up-to-date directory (required) ===&lt;br /&gt;
&lt;br /&gt;
Install &amp;lt;code&amp;gt;rsync&amp;lt;/code&amp;gt; and use it to get the latest version of Ryzom:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$HOME/ryzom/client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can start the pre-compiled 32bits client with the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;quot;$HOME/ryzom/client/ryzom_client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To keep the directory up to date and start the client more easily, you can use the following script (name it &amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Don't forget to make the script executable using &amp;lt;code&amp;gt;chmod a+x /usr/bin/ryzom&amp;lt;/code&amp;gt;. Now, using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command to start Ryzom.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bleeding edge client (optional) ==&lt;br /&gt;
&lt;br /&gt;
If the pre-compiled 32bits client doesn't suit your needs, you can compile it yourself from the source code. You can find the dependencies and how to install them on most distribution on the [https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux Ryzom Core documentation].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;cd &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
hg clone https://bitbucket.org/ryzom/ryzomcore&lt;br /&gt;
cd ryzomcore&lt;br /&gt;
hg update -c compatibility&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Instead of coming back to this wiki each time you want to compile the Ryzom client, create the following script. It's a good idea to put it in &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
# DOC: https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux&lt;br /&gt;
# &lt;br /&gt;
&lt;br /&gt;
set -e&lt;br /&gt;
&lt;br /&gt;
RYHOME=&amp;quot;$HOME/ryzom/ryzomcore/code&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! -d &amp;quot;$RYHOME/build&amp;quot; ]; then&lt;br /&gt;
    mkdir &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
cd &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Updating the code&lt;br /&gt;
hg pull&lt;br /&gt;
hg update&lt;br /&gt;
&lt;br /&gt;
# Ugly hack&lt;br /&gt;
sed -i &amp;quot;s/OPTIONAL/REQUIRED/&amp;quot; &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Let's compile&lt;br /&gt;
cmake -DWITH_NEL_TESTS=OFF -DWITH_NEL_SAMPLES=OFF -DWITH_NEL_TOOLS=OFF -DWITH_RYZOM_SERVER=OFF -DWITH_RYZOM_TOOLS=OFF -DWITH_RYZOM_CLIENT=ON -DWITH_QT=OFF ..&lt;br /&gt;
make -j4&lt;br /&gt;
&lt;br /&gt;
# Reverting the ugly hack&lt;br /&gt;
hg revert &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that you may have to adjust your cmake flags. For example, on ArchLinux, add &amp;lt;code&amp;gt;-DFREETYPE_LIBRARY=/usr/lib/libfreetype.so -DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ -DFREETYPE_INCLUDE_DIRS=/usr/include/freetype2/&amp;lt;/code&amp;gt;. On some distributions, the &amp;quot;ugly hack&amp;quot; part isn't needed.&lt;br /&gt;
&lt;br /&gt;
In order to use the client, we need to change our starting script (&amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
CLIENT_EXE=&amp;quot;$CLIENT_PATH/ryzom_client&amp;quot;&lt;br /&gt;
CLIENT_SAVE=&amp;quot;$CLIENT_EXE.save&amp;quot;&lt;br /&gt;
CLIENT_CUSTOM=&amp;quot;$ROOT_PATH/ryzomcore/code/build/bin/ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_SAVE&amp;quot; ]; then&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_SAVE&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_CUSTOM&amp;quot; ]; then&lt;br /&gt;
	mv &amp;quot;$CLIENT_EXE&amp;quot; &amp;quot;$CLIENT_SAVE&amp;quot;&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_CUSTOM&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And that's it. Please note that:&lt;br /&gt;
* The run script updates only the data.&lt;br /&gt;
* You need to run &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt; manually to compile a new client.&lt;br /&gt;
* The run script will use your custom client only if it's available. Therefore, if you want to use the pre-compiled one, simple move or delete &amp;lt;code&amp;gt;$HOME/ryzom/ryzomcore/code/build/bin/ryzom_client&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{TPInWikiRyzom}}&lt;br /&gt;
[[Category:Tutorials]][[Category:EN]][[Category:Linux]] [[Category:Support]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=2157</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=2157"/>
				<updated>2014-08-29T17:00:49Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Rewriting the basic installation part to include the archive&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|DE|{{FULLPAGENAME}}|ES|Installation Linux Générique|RU}}&lt;br /&gt;
&lt;br /&gt;
{{ToTrad|DE|DE translation needed please.}}&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== Basic installation ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: From the archive (recommended) ===&lt;br /&gt;
&lt;br /&gt;
This is optional but highly recommended in order to speed up the installation process and spare your internet connection. First, you may need to install &amp;lt;code&amp;gt;wget&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;7z&amp;lt;/code&amp;gt;. Then, retrieve the compressed Ryzom archive using the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
wget http://freefr.dl.sourceforge.net/project/ryzom/ryzom_client.7z&lt;br /&gt;
7z e ryzom_client.7z -o&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rm ryzom_client.7z&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you are prompted with a message like '''already exists. Overwrite with ryzom/data/exedll.bnp? (Y)es / (N)o / (A)lways / (S)kip all / A(u)to rename all / (Q)uit?''', answer '''A'''. Some components of this archive are out of date, therefore the next step is to synchronize it with the latest version available.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Having an up-to-date directory (required) ===&lt;br /&gt;
&lt;br /&gt;
Install &amp;lt;code&amp;gt;rsync&amp;lt;/code&amp;gt; and use it to get the latest version of Ryzom:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir -p &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$HOME/ryzom/client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can start the pre-compiled 32bits client with the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;quot;$HOME/ryzom/client/ryzom_client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To keep the directory up to date and start the client more easily, you can use the following script (name it &amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Don't forget to make the script executable using &amp;lt;code&amp;gt;chmod a+x /usr/bin/ryzom&amp;lt;/code&amp;gt;. Now, using the &amp;lt;code&amp;gt;ryzom&amp;lt;/code&amp;gt; command to start Ryzom.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bleeding edge client (optional) ==&lt;br /&gt;
&lt;br /&gt;
If the pre-compiled 32bits client doesn't suit your needs, you can compile it yourself from the source code. You can find the dependencies and how to install them on most distribution on the [https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux Ryzom Core documentation].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;cd &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
hg clone https://bitbucket.org/ryzom/ryzomcore&lt;br /&gt;
cd ryzomcore&lt;br /&gt;
hg update -c compatibility&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Instead of coming back to this wiki each time you want to compile the Ryzom client, create the following script. It's a good idea to put it in &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#&lt;br /&gt;
# DOC: https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux&lt;br /&gt;
# &lt;br /&gt;
&lt;br /&gt;
set -e&lt;br /&gt;
&lt;br /&gt;
RYHOME=&amp;quot;$HOME/ryzom/ryzomcore/code&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! -d &amp;quot;$RYHOME/build&amp;quot; ]; then&lt;br /&gt;
    mkdir &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
cd &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Updating the code&lt;br /&gt;
hg pull&lt;br /&gt;
hg update&lt;br /&gt;
&lt;br /&gt;
# Ugly hack&lt;br /&gt;
sed -i &amp;quot;s/OPTIONAL/REQUIRED/&amp;quot; &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Let's compile&lt;br /&gt;
cmake -DWITH_NEL_TESTS=OFF -DWITH_NEL_SAMPLES=OFF -DWITH_NEL_TOOLS=OFF -DWITH_RYZOM_SERVER=OFF -DWITH_RYZOM_TOOLS=OFF -DWITH_RYZOM_CLIENT=ON -DWITH_QT=OFF ..&lt;br /&gt;
make -j4&lt;br /&gt;
&lt;br /&gt;
# Reverting the ugly hack&lt;br /&gt;
hg revert &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that you may have to adjust your cmake flags. For example, on ArchLinux, add &amp;lt;code&amp;gt;-DFREETYPE_LIBRARY=/usr/lib/libfreetype.so -DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ -DFREETYPE_INCLUDE_DIRS=/usr/include/freetype2/&amp;lt;/code&amp;gt;. On some distributions, the &amp;quot;ugly hack&amp;quot; part isn't needed.&lt;br /&gt;
&lt;br /&gt;
In order to use the client, we need to change our starting script (&amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
CLIENT_EXE=&amp;quot;$CLIENT_PATH/ryzom_client&amp;quot;&lt;br /&gt;
CLIENT_SAVE=&amp;quot;$CLIENT_EXE.save&amp;quot;&lt;br /&gt;
CLIENT_CUSTOM=&amp;quot;$ROOT_PATH/ryzomcore/code/build/bin/ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_SAVE&amp;quot; ]; then&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_SAVE&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_CUSTOM&amp;quot; ]; then&lt;br /&gt;
	mv &amp;quot;$CLIENT_EXE&amp;quot; &amp;quot;$CLIENT_SAVE&amp;quot;&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_CUSTOM&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And that's it. Please note that:&lt;br /&gt;
* The run script updates only the data.&lt;br /&gt;
* You need to run &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt; manually to compile a new client.&lt;br /&gt;
* The run script will use your custom client only if it's available. Therefore, if you want to use the pre-compiled one, simple move or delete &amp;lt;code&amp;gt;$HOME/ryzom/ryzomcore/code/build/bin/ryzom_client&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{TPInWikiRyzom}}&lt;br /&gt;
[[Category:Tutorials]][[Category:EN]][[Category:Linux]] [[Category:Support]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_FAQ_EN&amp;diff=2120</id>
		<title>Linux FAQ EN</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_FAQ_EN&amp;diff=2120"/>
				<updated>2014-08-27T21:05:45Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Adding a link to the new &amp;quot;Linux generic installation&amp;quot; article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{tabLang|EN|DE|{{FULLPAGENAME}}|ES|FR|RU}}&lt;br /&gt;
&lt;br /&gt;
{{ToTrad|DE|DE translation needed please.}}&lt;br /&gt;
{{ToTrad|EN|EN translation needed please.}}&lt;br /&gt;
{{ToTrad|FR|FR translation needed please.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Ryzom installation ==&lt;br /&gt;
&lt;br /&gt;
=== Ubuntu ===&lt;br /&gt;
&lt;br /&gt;
Easiest way is to use the ryzom ppa&lt;br /&gt;
 $ sudo add-apt-repository ppa:ryzom-isv/ppa&lt;br /&gt;
 $ sudo apt-get update &amp;amp;&amp;amp; apt-get install ryzom&lt;br /&gt;
After that, to launch ryzom you should have a ryzom launcher in your menu. If not, run the following command :&lt;br /&gt;
 $ sh /opt/ryzom.sh&lt;br /&gt;
&lt;br /&gt;
=== Generic installation ===&lt;br /&gt;
&lt;br /&gt;
Main article: [[Linux generic installation]]&lt;br /&gt;
&lt;br /&gt;
It works on all distribution, but you will have to solve dependencies by yourself. Also note this is a 32 bits executable you are running, careful !&lt;br /&gt;
Download and extract [http://sourceforge.net/projects/ryzom/files/ryzom_client.7z|this] archive. Then, go inside the directory of the game and launch : (it is a good thing to run it once a week)&lt;br /&gt;
 $ sh update_ryzom.sh&lt;br /&gt;
After, to run the game you just have to run :&lt;br /&gt;
 $ ./ryzom_client&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=== Error while loading shared libraries ===&lt;br /&gt;
&lt;br /&gt;
You are missing some dependencies for ryzom. If you are using the official client or the alternate static one, there is very few of them (the package name may vary on your distribution, these are the debian one) :&lt;br /&gt;
*libGL.so, provided by libgl1-mesa-glx&lt;br /&gt;
*libX11.so, provided by libx11-6&lt;br /&gt;
*libXxf86vm.so, provided by libxxf86vm1&lt;br /&gt;
*libXrandr.so, provided by libxrandr2&lt;br /&gt;
*libXrender.so, provided by libxrender1&lt;br /&gt;
*libdl.so + librt.so + libpthread.so + libm.so + libc.so, provided by libc6&lt;br /&gt;
*libstdc++.so, provided by libstdc++6&lt;br /&gt;
*libgcc_s.so, provided by libgcc1&lt;br /&gt;
*libXext.so, provided by libxext6&lt;br /&gt;
*libxcb.so, provided by libxcb1&lt;br /&gt;
*libXau.so, provided by libxau6&lt;br /&gt;
*libXdmcp.so, provided by libxdmcp6&lt;br /&gt;
&lt;br /&gt;
Install all theses packages and try to launch again your client.&lt;br /&gt;
&lt;br /&gt;
=== No such file or directory ===&lt;br /&gt;
&lt;br /&gt;
You are using a 32 bits executable on a 64 bits system and you don't have multiarch or 32 bits emulations activated. Easiest way is to use multiarch&lt;br /&gt;
&lt;br /&gt;
==== Debian ====&lt;br /&gt;
&lt;br /&gt;
 # dpkg --add-architecture i386&lt;br /&gt;
 # apt-get update &amp;amp;&amp;amp; apt-get install libc6:i386&lt;br /&gt;
Try to run the client, you will probably miss some dependencies, install them ; if you want to install a package in a different architecture, type package:architecture instead of package. For example, if you miss libGL.so, type :&lt;br /&gt;
 # apt-get install libgl1-mesa-glx:i386&lt;br /&gt;
&lt;br /&gt;
=== The game launch, but instant-crash ===&lt;br /&gt;
&lt;br /&gt;
The most common answer is probably that you are missing a good graphic driver. Check your distribution advices for your GPU. If you don't know what your GPU is, run :&lt;br /&gt;
 $ lspci | grep &amp;quot;VGA&amp;quot;&lt;br /&gt;
An easy way to install the proprietary driver is to use the sgfxi script, it's very easy.&lt;br /&gt;
 # cd /usr/local/bin &amp;amp;&amp;amp; wget -Nc smxi.org/sgfxi &amp;amp;&amp;amp; chmod +x sgfxi&lt;br /&gt;
Then, as root in a tty (use Ctrl + Alt + F1 to switch, Ctrl + Alt + F7 to switch back to your desktop), run :&lt;br /&gt;
&lt;br /&gt;
'''Warning''' Installing the driver will close your session, make sure you save all your data&lt;br /&gt;
 # sgfxi&lt;br /&gt;
And follow the instructions.&lt;br /&gt;
&lt;br /&gt;
== Ryzom alternate client ==&lt;br /&gt;
&lt;br /&gt;
Static client, should work on any distribution, any kernel : [http://manda.glorf.fr/client/ryzom_client_static_32bits 32 bits version] or [http://manda.glorf.fr/client/ryzom_client_static_64bits 64 bits version]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{TPInWikiRyzom}}&lt;br /&gt;
[[Category:Tutorials]][[Category:EN]][[Category:Linux]] [[Category:Support]]&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=2119</id>
		<title>Linux generic installation</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=Linux_generic_installation&amp;diff=2119"/>
				<updated>2014-08-27T20:54:31Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Created page with &amp;quot;In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distri...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In this tutorial, we will cover the installation and configuration of the Ryzom client itself. We will not document how to install dependencies for it can change from a distribution to another.&lt;br /&gt;
&lt;br /&gt;
== Basic install ==&lt;br /&gt;
&lt;br /&gt;
You can use rsync to get the Ryzom data and a 32bits client.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mkdir &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$HOME/ryzom/client&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can start the client with the following command:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;quot;$HOME/ryzom/client/ryzom_client&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To keep the directory up to date and start the client more easily, you can use the following script and put it in &amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Don't forget to make the script executable using &amp;lt;code&amp;gt;chmod a+x /usr/bin/ryzom&amp;lt;/code&amp;gt;. Now, using the '''ryzom''' command the client client will be upgraded (if needed) and start it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bleeding edge client ==&lt;br /&gt;
&lt;br /&gt;
If the pre-compiled 32bits client doesn't suit your needs, you can compile it yourself from the source code. You can find the dependencies and how to install them on most distribution on the [https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux Ryzom Core documentation].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;cd &amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
hg clone https://bitbucket.org/ryzom/ryzomcore&lt;br /&gt;
cd ryzomcore&lt;br /&gt;
hg update -c compatibility&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Instead of coming back to this wiki each time you want to compile the Ryzom client, create the following script. It's a good idea to put it in &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;#&lt;br /&gt;
# DOC: https://ryzomcore.atlassian.net/wiki/display/RC/Build+Source+on+Linux&lt;br /&gt;
# &lt;br /&gt;
&lt;br /&gt;
set -e&lt;br /&gt;
&lt;br /&gt;
RYHOME=&amp;quot;$HOME/ryzom/ryzomcore/code&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! -d &amp;quot;$RYHOME/build&amp;quot; ]; then&lt;br /&gt;
    mkdir &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
cd &amp;quot;$RYHOME/build&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Updating the code&lt;br /&gt;
hg pull&lt;br /&gt;
hg update&lt;br /&gt;
&lt;br /&gt;
# Ugly hack&lt;br /&gt;
sed -i &amp;quot;s/OPTIONAL/REQUIRED/&amp;quot; &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Let's compile&lt;br /&gt;
cmake -DWITH_NEL_TESTS=OFF -DWITH_NEL_SAMPLES=OFF -DWITH_NEL_TOOLS=OFF -DWITH_RYZOM_SERVER=OFF -DWITH_RYZOM_TOOLS=OFF -DWITH_RYZOM_CLIENT=ON -DWITH_QT=OFF ..&lt;br /&gt;
make -j4&lt;br /&gt;
&lt;br /&gt;
# Reverting the ugly hack&lt;br /&gt;
hg revert &amp;quot;../CMakeModules/FindLibwww.cmake&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note that you may have to adjust your cmake flags. For example, on ArchLinux, add &amp;lt;code&amp;gt;-DFREETYPE_LIBRARY=/usr/lib/libfreetype.so -DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ -DFREETYPE_INCLUDE_DIRS=/usr/include/freetype2/&amp;lt;/code&amp;gt;. On some distributions, the &amp;quot;ugly hack&amp;quot; part isn't needed.&lt;br /&gt;
&lt;br /&gt;
In order to use the client, we need to change our starting script (&amp;lt;code&amp;gt;/usr/bin/ryzom&amp;lt;/code&amp;gt;):&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
ROOT_PATH=&amp;quot;$HOME/ryzom&amp;quot;&lt;br /&gt;
CLIENT_PATH=&amp;quot;$ROOT_PATH/client&amp;quot;&lt;br /&gt;
CLIENT_EXE=&amp;quot;$CLIENT_PATH/ryzom_client&amp;quot;&lt;br /&gt;
CLIENT_SAVE=&amp;quot;$CLIENT_EXE.save&amp;quot;&lt;br /&gt;
CLIENT_CUSTOM=&amp;quot;$ROOT_PATH/ryzomcore/code/build/bin/ryzom_client&amp;quot;&lt;br /&gt;
&lt;br /&gt;
if [ ! $(pidof ryzom_client) ]; then&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_SAVE&amp;quot; ]; then&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_SAVE&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
&lt;br /&gt;
    rsync -rtzv --progress --stats www.ryzom.com::ryzom &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    if [ -f &amp;quot;$CLIENT_CUSTOM&amp;quot; ]; then&lt;br /&gt;
	mv &amp;quot;$CLIENT_EXE&amp;quot; &amp;quot;$CLIENT_SAVE&amp;quot;&lt;br /&gt;
	cp -v &amp;quot;$CLIENT_CUSTOM&amp;quot; &amp;quot;$CLIENT_EXE&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
cd &amp;quot;$CLIENT_PATH&amp;quot;&lt;br /&gt;
./ryzom_client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And that's it. Please note that:&lt;br /&gt;
* The run script updates only the data.&lt;br /&gt;
* You need to run &amp;lt;code&amp;gt;$HOME/ryzom/compile_client.sh&amp;lt;/code&amp;gt; manually to compile a new client.&lt;br /&gt;
* The run script will use your custom client only if it's available. Therefore, if you want to use the pre-compiled one, simple move or delete &amp;lt;code&amp;gt;$HOME/ryzom/ryzomcore/code/build/bin/ryzom_client&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	<entry>
		<id>https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=User:Markanjio&amp;diff=2118</id>
		<title>User:Markanjio</title>
		<link rel="alternate" type="text/html" href="https://en.wiki.ryzom.com/wiki/Portal:Forge?from=/w/index.php?title=User:Markanjio&amp;diff=2118"/>
				<updated>2014-08-27T19:33:07Z</updated>
		
		<summary type="html">&lt;p&gt;Markanjio: Created page with &amp;quot;{{QuiSuisJe |Ani= |PJ=Oui |Gra= |Sce= |Dev= |Sup= |Tra= |Pat= |Sys= }}  {{Babylon |Deutsh=0|English=4|Español=0|Français=5|Русский=0}}  &amp;lt;code&amp;gt;                +       ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{QuiSuisJe&lt;br /&gt;
|Ani=&lt;br /&gt;
|PJ=Oui&lt;br /&gt;
|Gra=&lt;br /&gt;
|Sce=&lt;br /&gt;
|Dev=&lt;br /&gt;
|Sup=&lt;br /&gt;
|Tra=&lt;br /&gt;
|Pat=&lt;br /&gt;
|Sys=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Babylon |Deutsh=0|English=4|Español=0|Français=5|Русский=0}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
               +                OS: Arch Linux x86_64&lt;br /&gt;
               #                Hostname: jupiter&lt;br /&gt;
              ###               Kernel Release: 3.16.1-1-ARCH&lt;br /&gt;
             #####              Uptime: 3:28&lt;br /&gt;
             ######             WM: Awesome&lt;br /&gt;
            ; #####;            DE: None&lt;br /&gt;
           +##.#####            Packages: 941&lt;br /&gt;
          +##########           RAM: 3572 MB / 7920 MB&lt;br /&gt;
         #############;         Processor Type: Intel(R) Core(TM) i7-3520M CPU @ 2.90GHz&lt;br /&gt;
        ###############+        $EDITOR: emacs&lt;br /&gt;
       #######   #######        Root: 219G / 393G (55%) (ext4)&lt;br /&gt;
     .######;     ;###;`&amp;quot;.      &lt;br /&gt;
    .#######;     ;#####.       &lt;br /&gt;
    #########.   .########`     &lt;br /&gt;
   ######'           '######    &lt;br /&gt;
  ;####                 ####;   &lt;br /&gt;
  ##'                     '##   &lt;br /&gt;
 #'                         `#&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Markanjio</name></author>	</entry>

	</feed>