7

On an old PC, I have Lubuntu 12.10. during GIMP installation, the newest version was installed (ver. 2.8), but I think its a little heavy for an old machine like mine with a poor Intel Celeron CPU (Ram 1GB, VGA 128)

How can I go back to GIMP 2.6?

Zanna
  • 72,312
Merii
  • 71
  • 1
  • 2

3 Answers3

7

Try doing the forward port approach (works for more packages than just Gimp):

  1. Add the precise main repositories to your system.

    Create a file like /etc/apt/sources.list.d/precise-for-gimp.list containing

    deb http://nl.archive.ubuntu.com/ubuntu/ precise main restricted
    deb-src http://nl.archive.ubuntu.com/ubuntu/ precise main restricted
    deb http://nl.archive.ubuntu.com/ubuntu/ precise-updates main restricted
    deb-src http://nl.archive.ubuntu.com/ubuntu/ precise-updates main restricted
    deb http://security.ubuntu.com/ubuntu precise-security main restricted
    deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
    

    Replace the mirror (here nl.archive.ubuntu.com) with the one you would like to use.

  2. Add a file with the appropriate pinning to allow downgrading of a certain set of packages, in e.g. /etc/apt/preferences.d/10-pin-gimp-to-precise:

    Package: *gimp*
    Pin: release a=precise-security
    Pin-Priority: 1001
    
    Package: *gimp*
    Pin: release a=precise-updates
    Pin-Priority: 1001
    
  3. Run sudo apt-get update

  4. Run sudo apt-get -s install gimp (-s to simulate only)

  5. Check whether the output makes sense. If not, and it can't manage to satisfy the dependencies, then consider reverting the actions above. If it does work, then actually run the actions to be performed by re-running the previous command without the -s option.

This approach will provide you best flexibility and security-update support, as it's just using the repositories rather than a specific version. It may be a PITA to set up, though.

gertvdijk
  • 69,427
0

You can also simply download gimp 2.6 from ftp://ftp.gimp.org/pub/gimp/v2.6/ and run

  tar xvfz gimp-2.6.x.tar.gz   # unpack the sources
  cd gimp-2.6.x                # change to the toplevel directory
  ./configure                  # run the `configure' script
  make                         # build GIMP
  make install                 # install GIMP

You can change the v2.6 in the url to change the version.

To first uninstall gimp:

sudo apt-get remove gimp
don.joey
  • 29,392
-2

Try this (it worked for me):

sudo apt-get install ppa-purge
sudo ppa-purge ppa:otto-kesselgulasch/gimp
sudo apt-get install gimp
Diana
  • 1