About Store Forum Documentation Contact



Post Reply 
SOLVED I have a different Linux error after i resolved the NEW problem like stated
Author Message
AndreasRobertoVader Offline
Member

Post: #1
SOLVED I have a different Linux error after i resolved the NEW problem like stated
It further misses files according to this list:

" Xi, Xinerama, Xrandr, Xmu, odbc, udev, Xcursor, Xxf86vm " are missing all from " /usr/bin/ld "

I am a little bit insecure about linux too. I will search the web for these files.
(This post was last modified: 11-14-2024 10:18 PM by AndreasRobertoVader.)
11-14-2024 07:28 PM
Find all posts by this user Quote this message in a reply
titant Offline
Member

Post: #2
RE: I have a different Linux error after i resolved the NEW problem like stated
Quote:Linux

If you're on Linux, then before installing the Engine you will need to install some system libraries.

Please execute the following command from the Terminal:

sudo apt-get install libxmu-dev libxi-dev libxinerama-dev libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libmotif-dev unixodbc-dev lib32stdc++6 libgl1-mesa-dev libz-dev libxxf86vm-dev clang make

https://www.esenthel.com/?id=doc#Installation

You will need to open the terminal (Ctrl-Alt-t in ubuntu) and run this command (copy and paste it), it will install the missing libraries.

Code:
sudo apt-get install libxmu-dev libxi-dev libxinerama-dev libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libmotif-dev unixodbc-dev lib32stdc++6 libgl1-mesa-dev libz-dev libxxf86vm-dev clang make
(This post was last modified: 11-14-2024 07:37 PM by titant.)
11-14-2024 07:34 PM
Find all posts by this user Quote this message in a reply
AndreasRobertoVader Offline
Member

Post: #3
RE: I have a different Linux error after i resolved the NEW problem like stated
from the list i could not find propper packages for "libz-dev" and "libudev-dev" But there were some other versions such as "libz-mingw-w64-dev"

I am trying to look for those two packages. the basic application only gives "udev" missing upon compilation.
11-14-2024 08:02 PM
Find all posts by this user Quote this message in a reply
titant Offline
Member

Post: #4
RE: I have a different Linux error after i resolved the NEW problem like stated
So it seems you are not using Ubuntu, aren't you?

Your current Linux distribution must have a repository where you can search for, find and install these packages (libz-dev and libudev-dev, the mingw is irrelevant) without any problem. For example in Ubuntu all you have to do is execute the command:

Code:
sudo apt install libz-dev libudev-dev
(This post was last modified: 11-14-2024 08:46 PM by titant.)
11-14-2024 08:46 PM
Find all posts by this user Quote this message in a reply
AndreasRobertoVader Offline
Member

Post: #5
RE: I have a different Linux error after i resolved the NEW problem like stated
No i was using Ubuntu, but i was not using the latest version and seems to be some containers were somehow faulty. After Ubuntu Distribution upgrade it seems to work fine, runs the tutorials fine. That is after upgrade and installation from Synaptic.
11-14-2024 10:17 PM
Find all posts by this user Quote this message in a reply
Post Reply