What is a terminal and how do I open and use it?












72















  • What is a terminal?

  • How do I open a terminal window?

  • How do I use the terminal?










share|improve this question
























  • Related: What's the difference between Terminal, Console, Shell, and Command Line?
    – Scott
    Feb 19 '17 at 16:37
















72















  • What is a terminal?

  • How do I open a terminal window?

  • How do I use the terminal?










share|improve this question
























  • Related: What's the difference between Terminal, Console, Shell, and Command Line?
    – Scott
    Feb 19 '17 at 16:37














72












72








72


18






  • What is a terminal?

  • How do I open a terminal window?

  • How do I use the terminal?










share|improve this question
















  • What is a terminal?

  • How do I open a terminal window?

  • How do I use the terminal?







command-line






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 6 '12 at 17:41


























community wiki





6 revs, 4 users 67%
keithjgrant














  • 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
















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










5 Answers
5






active

oldest

votes


















63














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


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 type terminal



    enter image description here



  • 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






share|improve this answer























  • 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



















6














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































    4














    The terminal (also known as 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



















    • 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






    • 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



















    1















    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






    share|improve this answer































      0














      A terminal is a command prompt or an interpreter between user and machine its goal is to be able to access source code that would not be available during normal usage.






      share|improve this answer



















      • 1




        You cannot access source code through a terminal. Terminal is used to execute commands that allows you to do certain tasks.
        – Hans
        Jun 12 '15 at 14:37











      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
      });


      }
      });














      draft saved

      draft discarded


















      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

























      5 Answers
      5






      active

      oldest

      votes








      5 Answers
      5






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      63














      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


      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 type terminal



        enter image description here



      • 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






      share|improve this answer























      • 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
















      63














      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


      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 type terminal



        enter image description here



      • 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






      share|improve this answer























      • 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














      63












      63








      63






      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


      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 type terminal



        enter image description here



      • 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






      share|improve this answer














      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


      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 type terminal



        enter image description here



      • 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







      share|improve this answer














      share|improve this answer



      share|improve this answer








      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


















      • 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













      6














      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




























        6














        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


























          6












          6








          6






          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














          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














          share|improve this answer



          share|improve this answer








          edited Jun 6 '14 at 2:40


























          community wiki





          3 revs, 3 users 80%
          queueoverflow
























              4














              The terminal (also known as 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



















              • 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






              • 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
















              4














              The terminal (also known as 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



















              • 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






              • 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














              4












              4








              4






              The terminal (also known as 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














              The terminal (also known as 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














              share|improve this answer



              share|improve this answer








              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 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














              • 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






              • 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











              1















              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






              share|improve this answer




























                1















                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






                share|improve this answer


























                  1












                  1








                  1







                  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






                  share|improve this answer















                  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







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Apr 13 '17 at 12:25


























                  community wiki





                  2 revs
                  Qasim
























                      0














                      A terminal is a command prompt or an interpreter between user and machine its goal is to be able to access source code that would not be available during normal usage.






                      share|improve this answer



















                      • 1




                        You cannot access source code through a terminal. Terminal is used to execute commands that allows you to do certain tasks.
                        – Hans
                        Jun 12 '15 at 14:37
















                      0














                      A terminal is a command prompt or an interpreter between user and machine its goal is to be able to access source code that would not be available during normal usage.






                      share|improve this answer



















                      • 1




                        You cannot access source code through a terminal. Terminal is used to execute commands that allows you to do certain tasks.
                        – Hans
                        Jun 12 '15 at 14:37














                      0












                      0








                      0






                      A terminal is a command prompt or an interpreter between user and machine its goal is to be able to access source code that would not be available during normal usage.






                      share|improve this answer














                      A terminal is a command prompt or an interpreter between user and machine its goal is to be able to access source code that would not be available during normal usage.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      answered Jun 12 '15 at 13:41


























                      community wiki





                      Arkaheuz









                      • 1




                        You cannot access source code through a terminal. Terminal is used to execute commands that allows you to do certain tasks.
                        – Hans
                        Jun 12 '15 at 14:37














                      • 1




                        You cannot access source code through a terminal. Terminal is used to execute commands that allows you to do certain tasks.
                        – Hans
                        Jun 12 '15 at 14:37








                      1




                      1




                      You cannot access source code through a terminal. Terminal is used to execute commands that allows you to do certain tasks.
                      – Hans
                      Jun 12 '15 at 14:37




                      You cannot access source code through a terminal. Terminal is used to execute commands that allows you to do certain tasks.
                      – Hans
                      Jun 12 '15 at 14:37


















                      draft saved

                      draft discarded




















































                      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.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • 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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      How did Captain America manage to do this?

                      迪纳利

                      南乌拉尔铁路局