Understanding sudo (Administrator Access)
The sudo command lets you perform administrative tasks. Ubuntu will ask for your password before executing sudo commands:
bash
sudo apt update # Update package lists (requires admin rights)
sudo nano /etc/hosts # Edit system-wide configuration file
Important: Only use sudo when necessary, and be extra careful with sudo commands as they can affect system-wide settings.

