Using Raspberry Pi 3 B+ and 64bit Arm version of 1.8.10;
Had 1.8.8 running quite happily on the Pi. Foolishly tried to update to 1.8.10 and broke everything.
Running ./install.sh from a shell fails because of write access to /usr/local/..etc....
$ su ./install.sh gets further but fails at "#Install using xdg-utils" with the error;
cannot touch '/root/.local/share/applications/mimeapps.list' : no such file.
Looking at install.sh this error is obvious because it runs xdg-mime as the native user which, since we ran the script under 'sudo' is root. Changing this line to;
su ${SUDO_USER} xdg-mime default ${RESOURCE_NAME}.....etc....
allowed the installation script to complete.
NOW, however, if I click on the "Arduino" icon in menu/Programming I get a timer icon for about 45 seconds then it disappears.
If I try to run it from a command line I get;
/usr/local/bin/arduino: line 35: /home/john/Downloads/arduino-1.8.10/java/bin/java: cannot execute binary file: Exec format error.
Now completely stumped as to what's going wrong and project stopped because I no longer have a development tool.
I've tried to uninstall and re-install it but to no avail
Someone help!!!