I’m new in Ubuntu and I need help to install a game from https://download.grandlineadventures.com/glaclient-build1582.zip. The zip contains a linux file glaclient-linux but this doesn’t open.
How could I open it?
Asked
Active
Viewed 192 times
0
Melebius
- 11,750
1 Answers
1
I’ve tried to download the archive and unzip the file glaclient-linux.
The command file glaclient-linux returns:
glaclient-linux: ELF 64-bit LSB shared object, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=79f804d0bc700ea0ff8e33462941eec21449ac41, stripped
It means this is a native binary executable file for x86-64 (aka amd64, 64-bit Intel), so it can be run directly on such a machine (not an old 32-bit Intel or Raspberry Pi, for example). You might have to set the executable flag which is not preserved in ZIP files. To set the flag, issue the command
chmod +x glaclient-linux
in the folder where you have extracted the file (or provide its path).
Melebius
- 11,750