Project

General

Profile

InstallAnubisOn64bits » History » Version 4

Julien Verneuil, 01/14/2018 05:25 PM

1 1 David RENÉ
h1. Install Anubis on Linux 64 bits (Debian)
2
3
It's possible to install Anubis on Debian 64 bits system but with 'i386' architecture installed.
4
5
Check if the 'i386' architecture is available with that command "dpkg --print-foreign-architectures"
6
7
<pre>
8
dpkg --print-foreign-architectures
9
</pre>
10
11
if the result is empty or different than 'i386' please add the architecture by issuing 
12
<pre>
13
dpkg --add-architecture i386
14
apt-get update
15
</pre>
16 2 David RENÉ
17
<pre>
18
apt-get install libjpeg62-turbo:i386
19 3 David RENÉ
apt-get install libstdc++6:i386
20
</pre>
21
22 4 Julien Verneuil
Under Debian systems :
23
24
<pre>
25
apt-get install lib6-i386
26
apt-get install lib32stdc++6
27
</pre>
28
29 3 David RENÉ
if you need Anubis graphic support with X11 add the following command
30
31
<pre>
32
apt-get install libx11-6:i386
33 2 David RENÉ
</pre>