5

I would like to upgrade gnome-terminal to the latest version. Is that possible on Ubuntu 14.04 LTS?

I am using version 3.6.2 of gnome-terminal.

I have tried:

sudo apt-get install --only-upgrade gnome-terminal

and it says gnome-terminal is already the newest version.

Håkon Hægland
  • 3,843
  • 12
  • 44
  • 78
  • Is there any reason you need this? Ubuntu releases don't aim to provide the always latest software but security patches. – xangua Apr 06 '15 at 16:12
  • Yes I was considering reporting a possible bug in gnome-terminal, and then I ought to first try the latest version before reporting. – Håkon Hægland Apr 06 '15 at 16:14
  • Since Ubuntu 14.04 won't get any new major version of the software it has you might as well just report the bug. – xangua Apr 06 '15 at 16:22
  • Ok, I might do that then.. I guess it is not possible then due to some sort of policy or maybe that it could cause conflicts with existing software, so then you are forced to upgrade Ubuntu first.. to get the latest version? – Håkon Hægland Apr 06 '15 at 16:27

1 Answers1

6

You have two ways to upgrade your terminal from 3.6.2 (stable) to the latest 3.12.3 and read step by step do not run apt-upgrade unless you done installing.

1st solution with Gnome3/staging PPA

sudo add-apt-repository ppa:gnome3-team/gnome3-staging

sudo apt-get update

sudo apt-get install --reinstall gnome-terminal

2nd solution with this PPA:

sudo add-apt-repository ppa:towolf/transparent-gnome-terminal

sudo apt-get update

sudo apt-get install --reinstall gnome-terminal

Though this PPA may require Gnome3/staging PPA to be installed also, this 2nd PPA contains different fixes and patches on RGB schema and transparency, opacity etc.

Notice!

After you add PPAs like Gnome3/staging beware of upgrading as you can even damage your system this is the latest bleeding edge updates and they don't guarantee the stability, so after you install gnome-terminal it's better to purge them e.g.:

sudo ppa-purge ppa:gnome3-team/gnome3-staging

sudo apt-get update

(PPA-purge has to be installed 1stly sudo apt-get install ppa-purge)

JoKeR
  • 6,894
  • 8
  • 42
  • 64
  • It would be nice if I could also keep the old version. For example, the old version could be called `gnome-terminal3.6.2` and the new one is simply `gnome-terminal`.. but I guess that would be asking for trouble? :) – Håkon Hægland Apr 06 '15 at 17:25
  • 1
    yep two packages of the same will lead to conflicts either way after you remove the ppa you'll be able to get back to 3.6.2 version any time. – JoKeR Apr 06 '15 at 17:37
  • After the ppa purge is done it automatically downgrades terminal to previous version, how do i prevent that? – Vikash Balasubramanian Dec 27 '16 at 12:09
  • yes it will do that because you removed the libs repo when you removed ppa and apt doesn't see it anymore though you can put a [specific package on hold when updating](http://askubuntu.com/questions/18654/how-to-prevent-updating-of-a-specific-package) – JoKeR Jan 11 '17 at 23:05
  • what if instead of `ppa-purge` you just remove the corresponding line of the PPA ? Wouldn't that keep the package – Ciprian Tomoiagă Mar 31 '17 at 23:03
  • well if that won't do any harm to the system you can try but I always prefer complete and tested solutions. – JoKeR Apr 02 '17 at 15:29
  • An alternative to using PPA is to [compile from source](https://askubuntu.com/a/936893/156688), then you can keep the different versions side-by-side. – Håkon Hægland Jul 27 '17 at 13:25