What is the difference between linux-x64-static.tar and ubuntu-aarch64.tar? #1913
-
What is the difference between linux-x64-static.tar and ubuntu-aarch64.tar? Which is better for production usage on ununtu server? postgrest-v8.0.0-linux-x64-static.tar.xz 3.09 MB |
Beta Was this translation helpful? Give feedback.
Answered by
steve-chavez
Aug 16, 2021
Replies: 1 comment 1 reply
-
Hey @dmiepub,
lscpu | grep Architecture
Architecture: x86_64 If your Ubuntu is x86_64 then you should use this one.
lscpu | grep Architecture
Architecture: aarch64 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
steve-chavez
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @dmiepub,
linux-x64-static.tar
can be used on any linux distribution on an x64 CPU (most common ones). You can check your CPU architecture with:lscpu | grep Architecture Architecture: x86_64
If your Ubuntu is x86_64 then you should use this one.
ubuntu-aarch64.tar
is for ARM CPUs, this binary only works for Ubuntu(maybe Debian/Raspbian as well).lscpu | grep Architecture Architecture: aarch64