Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.
  • What is a terminal?
  • How do I open a terminal window?
  • How do I use the terminal?
share|improve this question

3 Answers

up vote 25 down vote accepted

What is it:

The terminal is an interface in which you can type and execute text based commands.

terminal screenshot


Why use it:

It can be much faster to complete some tasks using a Terminal than with graphical applications and menus. Another benefit is allowing access to many more commands and scripts.

A common terminal task of installing an application can be achieved within a single command, compared to navigating through the Software Centre or Synaptic Manager.

For example the following would install Deluge bittorrent client:

sudo apt-get install deluge

To save a detailed list of files in the current directory tree to a file called listing.txt:

find -type f > listing.txt

How do I open a terminal:

  • Open Dash (Super Key) or Applications and type terminal

    dash terminal

  • Use the keyboard shortcut by pressing CtrlAlt+T.

  • For older or Ubuntu versions: (More Info)

    Applications -> Accessories -> Terminal


Alternative names for the terminal:

  • Console
  • Shell
  • Command Line
  • Command Prompt

Common commands & Further information

share|improve this answer

The terminal (also known as shell and console) is an application in which you can execute commands directly. It looks like:

gnome-terminal screenshot

You can start the terminal from Applications -> Accessories -> Terminal.
If you're not using Gnome, but KDE (Kubuntu), you would find it under: Kickoff menu -> Applications -> System -> Konsole.

The Ubuntu wiki has an article about the terminal which includes information on starting the terminal in Xubuntu and Lubuntu, and a basic overview of commonly used commands. It's recommended for reading as it includes much examples as well.

share|improve this answer
2  
"Shell" and "terminal" don't really mean the same thing. For example, in the screenshot above, the terminal is probably gnome-terminal. The shell is probably bash. – Eliah Kagan Aug 11 '12 at 22:16
1  
Strictly speaking, those are indeed not the same. However, I mentioned it because the word "shell" is often used to refer to the place where you can enter commands. It happens to be that the terminal opens that shell, but a novice user may not directly relate it. – Lekensteyn Aug 12 '12 at 9:30

A Terminal is your interface to the underlying operating system via a shell, usually bash. It is a command line.

Back in the day, a Terminal was a screen+keyboard that was connected to a server. Today, it is usally just a progam.

You can open it via the utilities part of the apllications menu, or press ALT+F2 and type gnome-terminal.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.