How to update Ubuntu terminal?

107,162

Solution 1

I would use Synaptic if you're a beginner (I actually use apt-get but that's been covered above). Open Synaptic and search for the terminal program that you want to update. Check the box next to it and save your configuration. It's very easy to manage packages with Synaptic. Try things out and read the help files and you'll be an expert in no time.

Also, the Update Manager should run at startup and check for updates. You can run the update manager by itself and it will upgrade all of the packages on your system (or even upgrade to a new distribution).

Synaptic and Update Manager should give you what you need.

Solution 2

execute this in a terminal :

VIA APT-GET :

Using apt-get command line tool

apt-get is the command-line tool for handling packages. You can use following command options:

  • apt-get update: Update is used to resynchronize the package index files from their sources via Internet.
  • apt-get upgrade: Upgrade is used to install the newest versions of all packages currently installed on the system
  • apt-get install package-name: install is followed by one or more packages desired for installation. If package is already installed it will try to update to latest version.

  1. Open terminal and type following two commands (Application > Accessories > Terminal):

  2. Get update software list, enter:

    sudo apt-get update
    
  3. Update software(s) i.e. apply updates:

    sudo apt-get upgrade
    
Share:
107,162

Related videos on Youtube

bunty
Author by

bunty

Updated on September 17, 2022

Comments

  • bunty
    bunty over 1 year

    How to update Ubuntu terminal?

    • Chakra
      Chakra over 13 years
      Did you mean, how to update ubuntu from terminal?
    • Admin
      Admin over 13 years
      Could you please be a little more specific? Are you wanting to update from the Ubuntu terminal, or are you looking to make some update to the terminal itself?
    • marenostrum
      marenostrum over 13 years
      It'll be usefull for me as well, if you give some more detail, if you can make the question a little bit more clear. In fact there's no such thing named "ubuntu terminal"; we have "GNOME Terminal" coming with Ubuntu as the default terminal emulator. If you are asking to update the system via terminal, its something else, as Chakra and Chris Wilson commented/asked above.
    • Searock
      Searock over 13 years
      you need to edit your question.
  • hingev
    hingev almost 11 years
    hm.. but what to do when update manager is not running normally ?
  • am05mhz
    am05mhz almost 6 years
    this is more usefull than the accepted answer