Ad space (banner)
🖥️Linux Lessons
Lesson 2 / 61

What Is a Terminal?

This lesson is for anyone wondering "what is that black screen for, anyway?" The terminal (console) is a screen for giving your computer instructions in text, typing commands on your keyboard instead of clicking with a mouse.

Unlike a GUI (clicking on icons), a CLI (command-line interface) is how you converse with your computer using written commands. Servers and development environments frequently have no GUI at all, making this an essential skill.

Let's start by typing pwd to check which folder (directory) you're currently in. This is the first step of working in a terminal.

A common early mistake is typos in commands, or accidentally slipping in a full-width space. Focus on typing precisely in standard half-width characters.

In real work, you'll use the terminal for everything: SSH-ing into servers, deploying code, checking logs. It's the most fundamental tool an engineer has.

Linux
Try it (type this into the pseudo terminal)
pwd

🧑‍💻 You can type this command into the Linux pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)