On Mon, 8 Jun 2020 07:43:28 -0400 "Kevin P. Fleming" <[email protected]> wrote: > /usr/lib/jvm/java-11-openjdk-arm64/lib/$(uname -m)/server
On X86_64 the directory is called "amd64", which is not the output of
`uname -m`. I guess it is rather the arch suffix of the jvm dir.
You may also just set a softlink in the lib directory pointing to "."
named after the arch suffix. For the example above:
cd /usr/lib/jvm/java-11-openjdk-arm64/lib/
ln -s . arm64

