Configuring a static IP address on Fedora Linux is a relatively simple process. This tutorial will guide you through the steps of setting up a static IP address on Fedora Linux.
ip addr show
sudo nano /etc/sysconfig/network-scripts/ifcfg-eth0
IPADDR=192.168.1.100
GATEWAY=192.168.1.1
DNS1=8.8.8.8
DNS2=8.8.4.4
Ctrl + O
Ctrl + X
sudo systemctl restart network
ip addr show
And that's it! You have successfully configured a static IP address on Fedora Linux.