What is the difference between shell, console, and terminal?
In the linux world they can all look the same from the point of view of the user at the keyboard. The differences are in how they interact with each other.
The shell is the program which actually processes commands and returns output. Most shells also manage foreground and background processes, command history and command line editing. These features (and many more) are standard in bash
, the most common shell in modern linux systems.
A terminal refers to a wrapper program which runs a shell. Decades ago, this was a physical device consisting of little more than a monitor and keyboard. As unix/linux systems added better multiprocessing and windowing systems, this terminal concept was abstracted into software. Now you have programs such as Gnome Terminal which launches a window in a Gnome windowing environment which will run a shell into which you can enter commands.
The console is a special sort of terminal. Historically, the console was a single keyboard and monitor plugged into a dedicated serial console port on a computer used for direct communication at a low level with the operating system. Modern linux systems provide virtual consoles. These are accessed through key combinations (e.g. Alt+F1 or Ctrl+Alt+F1; the function key numbers different consoles) which are handled at low levels of the linux operating system -- this means that there is no special service which needs to be installed and configured to run. Interacting with the console is also done using a shell program.
A shell is a program that puts up a prompt and waits for you to type commands. It executes them and then prints another prompt. So, like CMD in Windows, or Bash in Unix. It can run in a terminal or on the console.
A console was originally a physical thing, a control panel. In computing terms it usually means the display that you see before the GUI starts up or after it finishes; you can sometimes switch to displaying it instead of the GUI. It's the place where the operating system prints error messages. On a multi-user computer, it's the display that's actually attached to the computer. Just to confuse you, on Windows it can also mean a window with a command shell in it, i.e. a terminal.
A terminal was also originally hardware, used to communicate with a computer. Nowadays it usually refers to a window with a command line (shell), which might appear in a GUI window or instead of a GUI.
For beginner beginners
For a more detailed description: https://askubuntu.com/a/506628/130518
- terminal = text input/output environment
- console = physical terminal (something you can actually physically touch)
- shell = command line interpreter
I will be describing the most normal use case for this in the following text.
A terminal uses a shell. A shell can run without a terminal.
To relate to everyday items:
- Terminal -> TV screen in your home
- Shell -> Program that is running on the TV screen
Another way of looking at it: Your ears (input) and mouth (output) are the terminals for sound. Your brain is the interpreter of those sounds using a specific shell (processing).
The terminal is for us humans, so we can read and write to/from the shell. Shells can run in background processes that do not require human interaction e.g. cron job, and therefore do not require a terminal.
Few examples of terminals that exist:
- Command prompt
- guake
- gnome-terminal
- terminator
Few examples of shells that exist:
- Bash
- sh (Bourne shell)
- PowerShell [windows]
- zsh (Z shell)
I've only written how these two normally work, there are other ways they work, but that is for a more advanced user.