# - bof - #



# :a
# -  - #
# - Ubuntu/Mint/ZorinOS (desktop) - #

# -  - #
# - Documentation - #
https://ostechnix.com/configure-static-dynamic-ip-address-arch-linux/

# :b
# -  - #
# - Tilix - #
ipa;
ip -c a;

1: lo:
2: enp3s0f0: <BROADCAST,MULTICAST,UP,LOWER_UP>
    inet 10.0.0.14/24 brd 10.0.0.255

# :c
# -  - #
# - Create enp3s0f0.network file - #
sudo vim /etc/systemd/network/enp3s0f0.network;
sudo vim /etc/systemd/network/ens18.network;


# - Configured - #

[Match]
Name=ens18

[Network]
Address=192.168.1.140/24
Gateway=192.168.1.1
DNS=8.8.8.8
DNS=8.8.4.4



# :e
# -  - #
# - List enabled services - #
sudo systemctl list-unit-files;



# :f
# -  - #
# - Disable ens18 service - #
sudo systemctl disable netctl@enp3s0f0.service;
sudo systemctl disable netctl@ens18.service;



# :g
# -  - #
# - Uninstall netctl - #
sudo apt remove netctl -y;



# :h
# -  - #
# - Stop/disable dhcpcd - #
sudo systemctl stop dhcpcd;
sudo systemctl disable dhcpcd;



# :i
# -  - #
# - Enable & start systemd-networkd - #
# sudo systemctl enable systemd-networkd;
# sudo systemctl start systemd-networkd;
sudo systemctl enable --now systemd-networkd;


# :j
# -  - #
# - Restart computer - #
sudo reboot now;





# - eof - #

