Fedora/GraalVM: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 63: Line 63:
  http://10.19.83.111/
  http://10.19.83.111/
  http://10.19.83.211/
  http://10.19.83.211/
|}
==Install==
==References==
{|
| valign="top" |
* [https://www.graalvm.org/docs/getting-started/linux-aarch64/ GraalVM Installation on Linux ARM64 systems]
* [https://quarkus.io/blog/quarkus-native-on-a-raspberry-pi/ Quarkus native running on a Raspberry Pi]
* [https://docs.fedoraproject.org/en-US/quick-docs/getting-started-with-apache-http-server/ Getting started with Apache HTTP Server]
* [https://docs.oracle.com/en/graalvm/enterprise/21/docs/getting-started Oracle GraalVM EE 21 Getting Started]
* [https://github.com/graalvm/graalvm-ce-builds/releases/tag/vm-21.3.0 GraalVM Community Edition 21.3.0]
* [https://github.com/graalvm/graalvm-ce-builds/tags GraalVM Community Edition Tags]
* [[Linux Containers]]
* [[Quarkus]]
* [[Podman]]
* [[Docker]]
| valign="top" |
* [https://gist.github.com/ricardozanini/fa65e485251913e1467837b1c5a8ed28 Gist Install GraalVM CE on Linux]
* [https://medium.com/@john_freeman/native-javac-with-graalvm-ddcc18a53edb Native javac built with GraalVM]
* [https://stackoverflow.com/questions/31851611/ ARM64 vs. AArch64]
* [[Fedora/Raspberry Pi]]
* [[Raspberry Pi]]
* [[Fedora]]


|}
|}

Revision as of 21:51, 12 November 2021


System Update:

sudo su
cat << EOF >> /etc/dnf/dnf.conf
fastestmirror=True
max_parallel_downloads=10
defaultyes=True
EOF
dnf update

Network Config:

sudo nmcli dev wifi con 'ChorkeOrg_2.4GHz' password 'sadaqah!'
sudo nmcli dev wifi con 'ChorkeInc' password 'sadaqah!'
sudo nmcli dev wifi con 'ChorkeOrg' password 'sadaqah!'
sudo nmcli dev wifi rescan
sudo nmcli dev wifi
sudo nmcli con
sudo nmcli dev

Free/Community:

sudo dnf install\
 https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release\
-$(rpm -E %fedora).noarch.rpm

Non-Free/Commercial:

sudo dnf install\
 https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree\
-release-$(rpm -E %fedora).noarch.rpm

Timezone:

sudo timedatectl set-timezone 'Asia/Kuala_Lumpur'
sudo timedatectl set-time '2010-10-10 10:10:10'
sudo hostnamectl set-hostname fedora
sudo timedatectl set-ntp true

Cockpit:

https://10.19.83.111:9090/
https://10.19.83.211:9090/
http://10.19.83.111/
http://10.19.83.211/

Install

References