Rocky and RHEL Stuff: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=== General notes and examples working with Rocky to remember === == Set Static IP == [https://devtutorial.io/how-to-configure-static-ip-address-on-rocky-linux-9-p3386.html| set static IP for Rocky 9] <pre> nmcli connection show sudo nmcli connection modify enp0s3 ipv4.addresses 192.168.1.30/24 sudo nmcli connection modify enp0s3 ipv4.gateway 192.168.1.1 sudo nmcli connection modify enp0s3 ipv4.dns 8.8.8.8 sudo nmcli connection modify enp0s3 ipv4.method manual sudo nmcl...") |
mNo edit summary |
||
Line 1: | Line 1: | ||
=== General notes and examples working with Rocky to remember === | === General notes and examples working with Rocky to remember === | ||
== Basic Install Info == | |||
<pre> | |||
wget https://download.rockylinux.org/pub/rocky/9/isos/x86_64/Rocky-9.3-x86_64-minimal.iso | |||
</pre> | |||
== Set Static IP == | == Set Static IP == |
Revision as of 08:54, 3 May 2024
General notes and examples working with Rocky to remember
Basic Install Info
wget https://download.rockylinux.org/pub/rocky/9/isos/x86_64/Rocky-9.3-x86_64-minimal.iso
Set Static IP
nmcli connection show sudo nmcli connection modify enp0s3 ipv4.addresses 192.168.1.30/24 sudo nmcli connection modify enp0s3 ipv4.gateway 192.168.1.1 sudo nmcli connection modify enp0s3 ipv4.dns 8.8.8.8 sudo nmcli connection modify enp0s3 ipv4.method manual sudo nmcli connection down enp0s3 && sudo nmcli connection up enp0s3 ip addr show