• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Compiling How to compile 0.4 sources in Debian/Kali LINUX?

kapiroto

New Member
Joined
Aug 9, 2016
Messages
15
Reaction score
1
I need help to compile this source: https://otland.net/threads/8-60-the-forgotten-server-0-4.240240/

That's what i made to compile in ubuntu:
Code:
apt-get install autoconf build-essential pkg-config automake libboost-all-dev libgmp3-dev libxml2-dev liblua5.1-0-dev libmysqlclient-dev libssl-dev libsqlite3-dev
cd /home/lucio/Documentos/server/3777
chmod -R 777 src
cd src
./autogen.sh
./configure --enable-mysql --enable-root-permission --enable-server-diag
./build.sh

Worked fine...
But now I'm using Kali Linux 2.0 (based in Debian)
I tried to do the same thing but i got some errors:

Code:
root@lucio:~/Documents/server/3777/src# apt-get install autoconf build-essential pkg-config automake libboost-all-dev libgmp3-dev libxml2-dev liblua5.1-0-dev libmysqlclient-dev libssl-dev libsqlite3-dev
Reading package lists... Done
Building dependency tree 
Reading state information... Done
build-essential is already the newest version (12.2).
build-essential set to manually installed.
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
gsettings-desktop-schemas : Breaks: mutter (< 3.19.92) but 3.18.2-1 is to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
root@lucio:~/Documents/server/3777/src#


Anyone pro in linux could help me?
 
Last edited:
Back
Top