0

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?

Melebius
  • 11,431
  • 9
  • 52
  • 78

1 Answers1

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,431
  • 9
  • 52
  • 78