What is a terminal and how do I open and use it?
- What is a terminal?
- How do I open a terminal window?
- How do I use the terminal?
command-line
add a comment |
- What is a terminal?
- How do I open a terminal window?
- How do I use the terminal?
command-line
1
Related: What's the difference between Terminal, Console, Shell, and Command Line?
– Scott
Feb 19 '17 at 16:37
add a comment |
- What is a terminal?
- How do I open a terminal window?
- How do I use the terminal?
command-line
- What is a terminal?
- How do I open a terminal window?
- How do I use the terminal?
command-line
command-line
edited Dec 6 '12 at 17:41
community wiki
6 revs, 4 users 67%
keithjgrant
1
Related: What's the difference between Terminal, Console, Shell, and Command Line?
– Scott
Feb 19 '17 at 16:37
add a comment |
1
Related: What's the difference between Terminal, Console, Shell, and Command Line?
– Scott
Feb 19 '17 at 16:37
1
1
Related: What's the difference between Terminal, Console, Shell, and Command Line?
– Scott
Feb 19 '17 at 16:37
Related: What's the difference between Terminal, Console, Shell, and Command Line?
– Scott
Feb 19 '17 at 16:37
add a comment |
4 Answers
4
active
oldest
votes
What is it:
The terminal is an interface in which you can type and execute text based commands.
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
Sometimes you will also see the following notation:
$ whoami
calum
$ ls
Downloads Documents
This means that the command whoami
is executed which gives calum
as output. Following that command, ls
is executed which outputs Downloads Documents
.
A similar notation is:
# apt-get update
This means that the command should be run as root, that is, using sudo
:
$ sudo apt-get update
Note that the #
character is also used for comments.
# this command will give your username
whoami
# the next command will show the contents of the current directory
ls
How do I open a terminal:
Open the Dash (Super Key) or
Applications and typeterminal
Use the keyboard shortcut by pressing Ctrl+Alt+T.
For older or Ubuntu versions: (More Info)
Applications → Accessories → Terminal
Alternative names for the terminal:
- Console
- Shell
- Command line
- Command prompt
(Although technically they mean different things)
Common commands & Further information
- Ubuntu Documentation: Using The
Terminal
Another reason that people helping you will prefer to give you terminal-based commands over directing you through a GUI is simply because you type everything in directly. There's no searching for applications and/or menu items. Don't be put off by the sole text-interface. To this day, whenever I open a command-prompt in Windows, people instantly ask me if I'm hacking their computer or some other such nonsense. The terminal is your friend.
– user175473
Jul 16 '13 at 19:13
1
Another advantage is that everything you do in the terminal can be scripted and automated.
– kiri
Oct 17 '13 at 2:58
3
Lazy tip: You can use drag and drop to drop files and folders from the filemanager into the terminal, which will give you the complete path to apply a command to the file. It's the best of both worlds.
– LiveWireBT
Dec 5 '14 at 18:22
add a comment |
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
.
add a comment |
The terminal (also known as console) is an application in which you can execute commands directly. It looks like:
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.
3
"Shell" and "terminal" don't really mean the same thing. For example, in the screenshot above, the terminal is probablygnome-terminal
. The shell is probablybash
.
– 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
add a comment |
A Terminal is a command interpreter. A Terminal is an entity that takes input from the user and deals with the computer rather than the user deal directly with the computer. If the user had to deal directly with the computer he would not get much done as the computer only understands strings of 1's and 0's
Example
When a person drives a car, that person doesn't have to actually adjust every detail that goes along with making the engine run, or the electronic system controlling all of the engine timing and so on. The dashboard would also be considered part of the the Terminal since pertinent (Having logical precise relevance to the matter at hand) information relating to the user's involvement in operating the car is displayed there. In fact any part of the car that the user has control of during operation of the car would be considered part of the Terminal.
Terminal is a program that allows the user to use the computer without him having to deal directly with it. It is in a sense a protective shell that prevents the user and computer from coming into contact with one another.
How Do I Use It ? @ cas
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f38162%2fwhat-is-a-terminal-and-how-do-i-open-and-use-it%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
What is it:
The terminal is an interface in which you can type and execute text based commands.
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
Sometimes you will also see the following notation:
$ whoami
calum
$ ls
Downloads Documents
This means that the command whoami
is executed which gives calum
as output. Following that command, ls
is executed which outputs Downloads Documents
.
A similar notation is:
# apt-get update
This means that the command should be run as root, that is, using sudo
:
$ sudo apt-get update
Note that the #
character is also used for comments.
# this command will give your username
whoami
# the next command will show the contents of the current directory
ls
How do I open a terminal:
Open the Dash (Super Key) or
Applications and typeterminal
Use the keyboard shortcut by pressing Ctrl+Alt+T.
For older or Ubuntu versions: (More Info)
Applications → Accessories → Terminal
Alternative names for the terminal:
- Console
- Shell
- Command line
- Command prompt
(Although technically they mean different things)
Common commands & Further information
- Ubuntu Documentation: Using The
Terminal
Another reason that people helping you will prefer to give you terminal-based commands over directing you through a GUI is simply because you type everything in directly. There's no searching for applications and/or menu items. Don't be put off by the sole text-interface. To this day, whenever I open a command-prompt in Windows, people instantly ask me if I'm hacking their computer or some other such nonsense. The terminal is your friend.
– user175473
Jul 16 '13 at 19:13
1
Another advantage is that everything you do in the terminal can be scripted and automated.
– kiri
Oct 17 '13 at 2:58
3
Lazy tip: You can use drag and drop to drop files and folders from the filemanager into the terminal, which will give you the complete path to apply a command to the file. It's the best of both worlds.
– LiveWireBT
Dec 5 '14 at 18:22
add a comment |
What is it:
The terminal is an interface in which you can type and execute text based commands.
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
Sometimes you will also see the following notation:
$ whoami
calum
$ ls
Downloads Documents
This means that the command whoami
is executed which gives calum
as output. Following that command, ls
is executed which outputs Downloads Documents
.
A similar notation is:
# apt-get update
This means that the command should be run as root, that is, using sudo
:
$ sudo apt-get update
Note that the #
character is also used for comments.
# this command will give your username
whoami
# the next command will show the contents of the current directory
ls
How do I open a terminal:
Open the Dash (Super Key) or
Applications and typeterminal
Use the keyboard shortcut by pressing Ctrl+Alt+T.
For older or Ubuntu versions: (More Info)
Applications → Accessories → Terminal
Alternative names for the terminal:
- Console
- Shell
- Command line
- Command prompt
(Although technically they mean different things)
Common commands & Further information
- Ubuntu Documentation: Using The
Terminal
Another reason that people helping you will prefer to give you terminal-based commands over directing you through a GUI is simply because you type everything in directly. There's no searching for applications and/or menu items. Don't be put off by the sole text-interface. To this day, whenever I open a command-prompt in Windows, people instantly ask me if I'm hacking their computer or some other such nonsense. The terminal is your friend.
– user175473
Jul 16 '13 at 19:13
1
Another advantage is that everything you do in the terminal can be scripted and automated.
– kiri
Oct 17 '13 at 2:58
3
Lazy tip: You can use drag and drop to drop files and folders from the filemanager into the terminal, which will give you the complete path to apply a command to the file. It's the best of both worlds.
– LiveWireBT
Dec 5 '14 at 18:22
add a comment |
What is it:
The terminal is an interface in which you can type and execute text based commands.
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
Sometimes you will also see the following notation:
$ whoami
calum
$ ls
Downloads Documents
This means that the command whoami
is executed which gives calum
as output. Following that command, ls
is executed which outputs Downloads Documents
.
A similar notation is:
# apt-get update
This means that the command should be run as root, that is, using sudo
:
$ sudo apt-get update
Note that the #
character is also used for comments.
# this command will give your username
whoami
# the next command will show the contents of the current directory
ls
How do I open a terminal:
Open the Dash (Super Key) or
Applications and typeterminal
Use the keyboard shortcut by pressing Ctrl+Alt+T.
For older or Ubuntu versions: (More Info)
Applications → Accessories → Terminal
Alternative names for the terminal:
- Console
- Shell
- Command line
- Command prompt
(Although technically they mean different things)
Common commands & Further information
- Ubuntu Documentation: Using The
Terminal
What is it:
The terminal is an interface in which you can type and execute text based commands.
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
Sometimes you will also see the following notation:
$ whoami
calum
$ ls
Downloads Documents
This means that the command whoami
is executed which gives calum
as output. Following that command, ls
is executed which outputs Downloads Documents
.
A similar notation is:
# apt-get update
This means that the command should be run as root, that is, using sudo
:
$ sudo apt-get update
Note that the #
character is also used for comments.
# this command will give your username
whoami
# the next command will show the contents of the current directory
ls
How do I open a terminal:
Open the Dash (Super Key) or
Applications and typeterminal
Use the keyboard shortcut by pressing Ctrl+Alt+T.
For older or Ubuntu versions: (More Info)
Applications → Accessories → Terminal
Alternative names for the terminal:
- Console
- Shell
- Command line
- Command prompt
(Although technically they mean different things)
Common commands & Further information
- Ubuntu Documentation: Using The
Terminal
edited Aug 21 '18 at 17:10
community wiki
8 revs, 7 users 70%
Cas
Another reason that people helping you will prefer to give you terminal-based commands over directing you through a GUI is simply because you type everything in directly. There's no searching for applications and/or menu items. Don't be put off by the sole text-interface. To this day, whenever I open a command-prompt in Windows, people instantly ask me if I'm hacking their computer or some other such nonsense. The terminal is your friend.
– user175473
Jul 16 '13 at 19:13
1
Another advantage is that everything you do in the terminal can be scripted and automated.
– kiri
Oct 17 '13 at 2:58
3
Lazy tip: You can use drag and drop to drop files and folders from the filemanager into the terminal, which will give you the complete path to apply a command to the file. It's the best of both worlds.
– LiveWireBT
Dec 5 '14 at 18:22
add a comment |
Another reason that people helping you will prefer to give you terminal-based commands over directing you through a GUI is simply because you type everything in directly. There's no searching for applications and/or menu items. Don't be put off by the sole text-interface. To this day, whenever I open a command-prompt in Windows, people instantly ask me if I'm hacking their computer or some other such nonsense. The terminal is your friend.
– user175473
Jul 16 '13 at 19:13
1
Another advantage is that everything you do in the terminal can be scripted and automated.
– kiri
Oct 17 '13 at 2:58
3
Lazy tip: You can use drag and drop to drop files and folders from the filemanager into the terminal, which will give you the complete path to apply a command to the file. It's the best of both worlds.
– LiveWireBT
Dec 5 '14 at 18:22
Another reason that people helping you will prefer to give you terminal-based commands over directing you through a GUI is simply because you type everything in directly. There's no searching for applications and/or menu items. Don't be put off by the sole text-interface. To this day, whenever I open a command-prompt in Windows, people instantly ask me if I'm hacking their computer or some other such nonsense. The terminal is your friend.
– user175473
Jul 16 '13 at 19:13
Another reason that people helping you will prefer to give you terminal-based commands over directing you through a GUI is simply because you type everything in directly. There's no searching for applications and/or menu items. Don't be put off by the sole text-interface. To this day, whenever I open a command-prompt in Windows, people instantly ask me if I'm hacking their computer or some other such nonsense. The terminal is your friend.
– user175473
Jul 16 '13 at 19:13
1
1
Another advantage is that everything you do in the terminal can be scripted and automated.
– kiri
Oct 17 '13 at 2:58
Another advantage is that everything you do in the terminal can be scripted and automated.
– kiri
Oct 17 '13 at 2:58
3
3
Lazy tip: You can use drag and drop to drop files and folders from the filemanager into the terminal, which will give you the complete path to apply a command to the file. It's the best of both worlds.
– LiveWireBT
Dec 5 '14 at 18:22
Lazy tip: You can use drag and drop to drop files and folders from the filemanager into the terminal, which will give you the complete path to apply a command to the file. It's the best of both worlds.
– LiveWireBT
Dec 5 '14 at 18:22
add a comment |
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
.
add a comment |
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
.
add a comment |
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
.
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
.
edited Jun 6 '14 at 2:40
community wiki
3 revs, 3 users 80%
queueoverflow
add a comment |
add a comment |
The terminal (also known as console) is an application in which you can execute commands directly. It looks like:
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.
3
"Shell" and "terminal" don't really mean the same thing. For example, in the screenshot above, the terminal is probablygnome-terminal
. The shell is probablybash
.
– 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
add a comment |
The terminal (also known as console) is an application in which you can execute commands directly. It looks like:
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.
3
"Shell" and "terminal" don't really mean the same thing. For example, in the screenshot above, the terminal is probablygnome-terminal
. The shell is probablybash
.
– 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
add a comment |
The terminal (also known as console) is an application in which you can execute commands directly. It looks like:
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.
The terminal (also known as console) is an application in which you can execute commands directly. It looks like:
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.
edited Jun 7 '17 at 7:57
community wiki
3 revs, 3 users 74%
Lekensteyn
3
"Shell" and "terminal" don't really mean the same thing. For example, in the screenshot above, the terminal is probablygnome-terminal
. The shell is probablybash
.
– 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
add a comment |
3
"Shell" and "terminal" don't really mean the same thing. For example, in the screenshot above, the terminal is probablygnome-terminal
. The shell is probablybash
.
– 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
3
3
"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
"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
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
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
add a comment |
A Terminal is a command interpreter. A Terminal is an entity that takes input from the user and deals with the computer rather than the user deal directly with the computer. If the user had to deal directly with the computer he would not get much done as the computer only understands strings of 1's and 0's
Example
When a person drives a car, that person doesn't have to actually adjust every detail that goes along with making the engine run, or the electronic system controlling all of the engine timing and so on. The dashboard would also be considered part of the the Terminal since pertinent (Having logical precise relevance to the matter at hand) information relating to the user's involvement in operating the car is displayed there. In fact any part of the car that the user has control of during operation of the car would be considered part of the Terminal.
Terminal is a program that allows the user to use the computer without him having to deal directly with it. It is in a sense a protective shell that prevents the user and computer from coming into contact with one another.
How Do I Use It ? @ cas
add a comment |
A Terminal is a command interpreter. A Terminal is an entity that takes input from the user and deals with the computer rather than the user deal directly with the computer. If the user had to deal directly with the computer he would not get much done as the computer only understands strings of 1's and 0's
Example
When a person drives a car, that person doesn't have to actually adjust every detail that goes along with making the engine run, or the electronic system controlling all of the engine timing and so on. The dashboard would also be considered part of the the Terminal since pertinent (Having logical precise relevance to the matter at hand) information relating to the user's involvement in operating the car is displayed there. In fact any part of the car that the user has control of during operation of the car would be considered part of the Terminal.
Terminal is a program that allows the user to use the computer without him having to deal directly with it. It is in a sense a protective shell that prevents the user and computer from coming into contact with one another.
How Do I Use It ? @ cas
add a comment |
A Terminal is a command interpreter. A Terminal is an entity that takes input from the user and deals with the computer rather than the user deal directly with the computer. If the user had to deal directly with the computer he would not get much done as the computer only understands strings of 1's and 0's
Example
When a person drives a car, that person doesn't have to actually adjust every detail that goes along with making the engine run, or the electronic system controlling all of the engine timing and so on. The dashboard would also be considered part of the the Terminal since pertinent (Having logical precise relevance to the matter at hand) information relating to the user's involvement in operating the car is displayed there. In fact any part of the car that the user has control of during operation of the car would be considered part of the Terminal.
Terminal is a program that allows the user to use the computer without him having to deal directly with it. It is in a sense a protective shell that prevents the user and computer from coming into contact with one another.
How Do I Use It ? @ cas
A Terminal is a command interpreter. A Terminal is an entity that takes input from the user and deals with the computer rather than the user deal directly with the computer. If the user had to deal directly with the computer he would not get much done as the computer only understands strings of 1's and 0's
Example
When a person drives a car, that person doesn't have to actually adjust every detail that goes along with making the engine run, or the electronic system controlling all of the engine timing and so on. The dashboard would also be considered part of the the Terminal since pertinent (Having logical precise relevance to the matter at hand) information relating to the user's involvement in operating the car is displayed there. In fact any part of the car that the user has control of during operation of the car would be considered part of the Terminal.
Terminal is a program that allows the user to use the computer without him having to deal directly with it. It is in a sense a protective shell that prevents the user and computer from coming into contact with one another.
How Do I Use It ? @ cas
edited Apr 13 '17 at 12:25
community wiki
2 revs
Qasim
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f38162%2fwhat-is-a-terminal-and-how-do-i-open-and-use-it%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Related: What's the difference between Terminal, Console, Shell, and Command Line?
– Scott
Feb 19 '17 at 16:37