Frequently Asked Questions




  • 1.Java
  • How to find out which Java version is installed?
    ReneRanzinger21-04-2016
    1. Open a command line terminal
      • Windows: Start "Command Prompt"
      • Linux: Open any terminal application
      • MacOS: Open the "Terminal" application
    2. Type: "java -version"
    3. You will either get an error message indicating Java is not installed or at least not configured for your environment or a summary from Java including the version number. Make sure it fullfilles the requirements in the installation section.

    commandprompt

  • How to find out if 32bit or 64bit Java is installed?
    ReneRanzinger21-04-2016
    1. Open a command line terminal
      • Windows: Start "Command Prompt"
      • Linux: Open any terminal application
      • MacOS: Open the "Terminal" application
    2. Type: "java -d32" and after hitting return type "java -d64"
    3. One of the two commands will return an error message the other one the Java usage options. The one of the Java usage option is the version (32/64) that is installed. Keep in mind that we recommend using 64bit Java if your computer and operation system supports this.

     

    commandprompt2

  • 2.macOS
  • GRITS does not start on Mac even if Java is installed.
    ReneRanzinger18-10-2021

    This problem can happen on newer macOS versions. The reason is the increase security policy that puts all downloaded programs into quarantine.

     

    • Open a command line terminal (e.g. click on the magnifying glass in the top right corner of the screen to open the Sportlight Search and type "terminal".
    • Change to the directory which contains the downloaded GRITS Toolbox folder (e.g. /Users/xyz/Downloads/GRITS-Toolbox-1.3.0). Please note: Inside the GRITS folder (e.g. GRITS-Toolbox-1.3.0) should be a folder MacOS with the executable start program named GRITS.
    cd /Users/xyz/Downloads
    • Type the following command:
    xattr GRITS-Toolbox-1.3.0/MacOS/GRITS
    • You should see an attribute "com.apple.quarantine"
    • Now we will remove the quarantine flag for all files and folders of the download:
    sudo xattr -r -d com.apple.quarantine GRITS-Toolbox-1.3.0/
    • You will need the admin password for this. After this you should be able to start the GRITS executable in the MacOS folder.

    Please note: Make sure to perform the command on the entire folder for GRITS Toolbox not just on the executable or the MacOS folder. Otherwise the program will still not start or might crash.