Mention how to apply xattr to downloaded GraalVM
See original GitHub issueNormally I set GRAALVM_HOME
to my downloaded GraalVM installation which currently looks like: /Users/borkdude/Downloads/graalvm-ce-java11-21.2.0/Contents/Home
. Since Big Sur I need to apply sudo xattr -r -d com.apple.quarantine
to the GraalVM installation to remove the quarantine attribute. But this does not work when you pass include Contents/Home
: pass the part without it, like:
sudo xattr -r -d com.apple.quarantine $GRAALVM_HOME/../..
or
sudo xattr -r -d com.apple.quarantine /Users/borkdude/Downloads/graalvm-ce-java11-21.2.0/Contents/Home
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:5 (5 by maintainers)
Top Results From Across the Web
"graalvm-ce-java11-21.1.0" is damaged and can't be ... - GitHub
I have just downloaded and manually install GraalVM on MacOS Catalina as ... sudo xattr -r -d com.apple.quarantine path to graalvm folder ...
Read more >Building a Native Executable - Quarkus
Use the following command to recursively delete the com.apple.quarantine extended attribute on the GraalVM install directory as a workaround: xattr -r -d com ......
Read more >Installation on macOS Platforms - GraalVM
Follow these steps to install GraalVM Community on the macOS operating system: Navigate to GraalVM Releases repository on GitHub. Select Java 11 based...
Read more >Graal
Download the desired version. 21.3 JDK17 · 22.3 JDK19. Go to the downloads folder: cd Downloads/. Extract tar file with: tar -xzvf ...
Read more >Getting GraalVM up and Running on a Mac - Beyond Java
Download the GraalVM package bearing "Darwin" in its name. Unpack it and copy the folder to /Library/Java/JavaVirtualMachines/ .
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Actually the above is wrong, you should (according to a GraalVM slack user):
and then extract the file.
Nice find!