# Manual Network Configuration for Workshop Environment This guide explains how to configure network connectivity manually when the GUI network manager is not available or when setting up the workshop environment offline. ## Prerequisites - Root or sudo access - Basic command line knowledge - Network interface name (usually `eth0`, `wlan0`, etc.) ## Quick Network Diagnosis ```bash # Check network interfaces ip addr show # Check NetworkManager status systemctl status NetworkManager # Check current connections nmcli connection show # Check device status nmcli device status # Test internet connectivity ping -c 3 8.8.8.8 curl -I https://abra.coopcloud.tech ``` ## Manual WiFi Connection ### Method 1: Using nmcli (Command Line) ```bash # Scan for WiFi networks nmcli device wifi list # Connect to a WiFi network (replace SSID and PASSWORD) nmcli device wifi connect "YourWiFiSSID" password "YourWiFiPassword" # Connect to hidden network nmcli device wifi connect "HiddenSSID" password "password" hidden yes # Check connection status nmcli connection show --active ``` ### Method 2: Using wpa_supplicant (Advanced) ```bash # Create wpa_supplicant configuration sudo tee /etc/wpa_supplicant.conf > /dev/null <