Leaving the GUI Comfort Zone
While the desktop is nice, true power and control in Linux come from the Command Line Interface (CLI), accessed via the Terminal.
Why the CLI?
- Speed: Faster than navigating deep menu structures.
- Efficiency: Easily manage remote servers or systems without a display.
- Power: Many administrative and automation tasks are only possible or practical via the CLI.
- Consistency: Commands are the same across different distributions and desktop environments.
How to Open the Terminal
In Ubuntu, you can:
- Click the 'Show Applications' button and search for 'Terminal'.
- Use the keyboard shortcut:
Ctrl + Alt + T.
Your First Prompt
When the terminal opens, you will see the shell prompt, which typically looks like this:
bash username@hostname:~$
username: Your current user name.hostname: The name of your virtual machine.~: The current directory (Tilde, indicating your home directory).$: The prompt sign, indicating you are a normal user (not root).