1

I added a 3rd party software(terminator) PPA in Ubuntu 14.04 by running the command below:

sudo apt-add-repository ppa:gnome-terminator/ppa
sudo apt-get update

And now, when I search for that package using:

sudo apt-cache search terminator

It doesn't show anything.

I wanted to know, why it is behaving like this ?

g_p
  • 18,504
Naveen KS
  • 47
  • 3
  • Did you use sudo add-apt-repository ppa... command or the one listed in your post sudo apt-add-repository ppa... which is a little bit changed and also wrong command? And don't forget to wait for the terminal windows's prompt to ask you to press Y for yes to finally add the desired ppa to your software sources list. – Taz D. Oct 09 '14 at 10:43
  • I used sudo apt-add-repository ppa... only.Yes, I waited for the prompt and typed yes after that.After this command got executed, ppa was added in a file under sources.list directory.It looks good but the package doesn't show when I try to install. – Naveen KS Oct 09 '14 at 10:49
  • Unless you want older versions, use the one in the official repositories: http://packages.ubuntu.com/search?suite=trusty&keywords=terminator - you need to enable the universe repositoriy for it: http://askubuntu.com/a/148645/158442 – muru Oct 09 '14 at 11:15
  • Using one from the official repository worked.Thanks:-) – Naveen KS Oct 10 '14 at 05:16

3 Answers3

4

If you check the ppa page, you'll notice that there's no package version available for trusty (14.04):

enter image description here

But you can install the terminator package from the Ubuntu universe repository:

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe" 
sudo apt-get update
sudo apt-get install terminator
  • I hadn't seen the ubuntu version in the main terminator site.I searched for terminator in the official ubuntu site itself and added from there, It worked:-) sudo apt-add-repository "deb http://cz.archive.ubuntu.com/ubuntu trusty main universe" – Naveen KS Oct 10 '14 at 04:33
2
  1. If you want to add a 3rd party software then, go to the Ubuntu official package site, search for the package, add the ppa from there and follow the normal steps as in:

    sudo apt-get update package-name
    sudo apt-get install package-name
    
  2. You can also install 3rd party software without adding PPA also. Install the gdebi package first used for installing package from .deb file.

    sudo apt-get install gdebi
    

    Go to the Ubuntu official package site, search for the package name, then you are given the url path there to get .deb file of that package. Download it Then install it using gdebi.

    sudo gdebi package-name.deb
    
αғsнιη
  • 35,660
Naveen KS
  • 47
  • 3
0

Try these commands in a terminal window and see if they work for you:

      sudo add-apt-repository ppa:gnome-terminator

      sudo apt-get update

      sudo apt-get install terminator

I could not see any version of Terminator package built for Ubuntu 14.04 on the official page but if you still have problems with installing Terminator you can download latest version of Terminator from this link, and try installing it with GDEBI package manager rather than adding the ppa to your software sources list.

Taz D.
  • 2,225
  • 2
  • 17
  • 21
  • The whole point of adding ppa was to escape from dependency problem.I tried installing with gdebi, it works nicely with all the dependencies getting resolved.Thanks for the reply:-) – Naveen KS Oct 10 '14 at 04:26
  • Good for you. You managed to solve the problem yourself. I run Ubuntu 12.04 so I was able to simply download terminator_0.97_all.deb package and install it with Gdebi. Gdebi solved the dependecies too while installing terminator package. You should post an answer to your own question in here and mark it as solved so other people benefit from your solution. – Taz D. Oct 11 '14 at 07:40