Rocky and RHEL Stuff: Difference between revisions

From I Will Fear No Evil
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...")
 
 
(One intermediate revision by the same user not shown)
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 ==
Line 12: Line 17:
ip addr show
ip addr show
</pre>
</pre>
== Configure as a Gateway Router ==
[https://kifarunix.com/configure-centos-rocky-oracle-linux-as-a-linux-router/| Rocky as a Gateway]


[[Category:RHEL]]
[[Category:RHEL]]

Latest revision as of 14:49, 7 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

set static IP for Rocky 9

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

Configure as a Gateway Router

Rocky as a Gateway