-1
zarjazc@PL998794-VPCEL22FX:~$ apt-get install gimp
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
zarjazc@PL998794-VPCEL22FX:~$ 

That's what I get when I try to install gimp 2.8 from the website using the terminal code. The software center only has the 2.6 version

Braiam
  • 67,791
  • 32
  • 179
  • 269
Zarjazc
  • 21

2 Answers2

3

The error that are you getting is because that you have have another package handler or synaptic open, and the other one, because you're not using sudo.

To install Gimp 2.8 in Ubuntu 12.04, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo add-apt-repository ppa:otto-kesselgulasch/gimp
sudo apt-get update
sudo apt-get install gimp
Mitch
  • 107,631
0

Installing software requires escalated privileges. sudo apt-get install gimp

dobey
  • 40,982
Chester
  • 1,078