0

I found some posts that walk you through the installation but they are very old and don’t work anymore. I tried to install the oracle java for Arm Linux and then modify the IB installation script to point to the newly installed version of java but when running the script is says that it is corrupted.

I was following this guide: Trading on Raspberry Pi with Ubuntu 16.04.

Java version installed 1.8.0_65

After installing java the guide says to uncomment this line:

#INSTALL4J_JAVA_HOME_OVERRIDE=

and point it to the installed java.

INSTALL4J_JAVA_HOME_OVERRIDE= /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/bin/java

After doing this the installer gives me this message

gzip: sfx_archive.tar.gz: not in gzip format I am sorry, but the installer file seems to be corrupted. If you downloaded that file please try it again. If you transfer that file with ftp please make sure that you are using binary mode.

The installer I am using is: ibgateway-stable-standalone-linux-x86.sh

Please help

Ingo
  • 42,961
  • 20
  • 87
  • 207
Joan Arau
  • 13
  • 3

1 Answers1

0

Make sure you edit the shell script in binary mode! It sounds like you may have edited it as plain text. (eg. use vi -b)

Shanksy
  • 16