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?

- 11,431
- 9
- 52
- 78
-
https://download.grandlineadventures.com/glaclient-build1582.zip this is the game that i try to install – Miguel Alvarado Feb 12 '20 at 11:04
-
contains a file named "glaclient-linux" but i can´t open it – Miguel Alvarado Feb 12 '20 at 11:06
-
1What are you doing to 'open it' ? – Soren A Feb 12 '20 at 12:28
1 Answers
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).

- 11,431
- 9
- 52
- 78
-
I have no idea how to do it im coming from windows
i need to open the therminal and insert the comands chmod +x glaclient-linux? i extracted it on the desk
– Miguel Alvarado Feb 12 '20 at 12:56 -
Yes, or use the GUI method available in another answer to the question I linked. – Melebius Feb 12 '20 at 12:58
-
-
@MiguelAlvarado Have you been satisfied with my answer? If I could solve your problem, it would be nice if you accepted my answer (✓). In the opposite case, please clarify your needs using editing or comments. See also What should I do when someone answers my question?, How does accepting an answer work? – Melebius Feb 15 '20 at 08:48