It is currently Tue Jul 23, 2024 6:34 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 12 posts ] 
Author Message
 Post subject: FIXED!!!- Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 9:58 am  (#1) 
Offline
GimpChat Member
User avatar

Joined: Sep 29, 2011
Posts: 120
Location: Texas
I am running now Ubuntu 11.10 (why I'm not waiting for the next release I have no idea as it's next week but at least now hopefully I'll be familiar, but I digress).

I have finally managed to get it to recognize my tablet. (woohoo!)

I downloaded the binary for Gimp 2.7.4 from http://alcides-mp.com/software/gimp-2-7-4-binaries-for-ubuntu/ and the archive is on my desktop.

I finally as well figured out I needed 7 zip to get the 7z x command line to work (duh) so that is all straight.

The way he has the binary set up it needs to be extracted into /opt. He says to do
$ cd /opt
$ sudo 7z x /where-you-downloaded-the-file/gimp-2.7.4-linux-amd64.7z (I of course changed the wydtf to Desktop.)

When I do that..I get
7-Zip [64] 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18
p7zip Version 9.20 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,4 CPUs)


Error:
there is no such archive


So I thought ok..what if I do this and run it from Desktop into /opt (which makes more sense to me)
cd ~/Desktop
sudo 7z x /gimp-2.7.4-linux-amd64.7z/opt

and I get the same error message of no such archive.

I have extracted it straight onto the Desktop, but it just stares at me doing nothing (as if chiding me that it should duhhh be in /opt)....

Any ideas as to how to get it extracted there?

I thought about pulling it from Desktop into /opt already extracted but I can't due to permissions not allowing me to.

Thanks ahead of time for any insights!

Edit:

Ok so extracted to Desktop and did:
sudo cp Desktop/gimp-2.7.4 /opt

in hopes it would work but it didn't...I got cp: cannot stat `Desktop/gimp-2.7.4': No such file or directory

In time I want to learn to compile etc but that comes after I have the basic set up and can work within the ubuntu environment. I am wanting a version of Gimp that has the single window mode and as I am using 2.7.5 in Windows 7, I would like to get as closer to that version as possible as I utilize many of the changes within it.

*goes back to her finagling*

-jorden (who is quickly learning so much and enjoying myself immensely)

_________________
“There´s tools and colours for all of us,
to lend from nature to make the world
more understandable and beautiful”.

Image


Last edited by Jorden on Sat Apr 21, 2012 12:40 pm, edited 1 time in total.

Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Looking for insight/help - Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 11:58 am  (#2) 
Offline
GimpChat Member
User avatar

Joined: Oct 29, 2010
Posts: 711
Location: Netherlands
The file was probably saved somewhere else.
Try
cd ./Desktop
ls -a

and check if the file really is there.
Gerard.

Edit: Oops sorry didn't catch everything you wrote.
Quote "sudo cp Desktop/gimp-2.7.4 /opt"
will throw errors because /home/<username>/ is missing.
Try to add "./" (w/o the quotes) like this ./Desktop.
./ is shorthand for /home/<username>/.

_________________
Gentoo Linux always up-to-date.
Kernel-3.17.4 Python-2.7.8/3.3.5
Gimp-2.8.14

I use Linux only.
And Virtualbox with Win 7


Last edited by gerard82 on Sat Apr 21, 2012 12:09 pm, edited 1 time in total.

Top
 Post subject: Re: Looking for insight/help - Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:04 pm  (#3) 
Offline
GimpChat Member
User avatar

Joined: Sep 29, 2011
Posts: 120
Location: Texas
it is there:

@ubuntu:~/Desktop$ ls -a
. gimp-2.7.4
.. gimp-2.7.4-linux-amd64.7z
@ubuntu:~/Desktop$

_________________
“There´s tools and colours for all of us,
to lend from nature to make the world
more understandable and beautiful”.

Image


Top
 Post subject: Re: Looking for insight/help - Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:10 pm  (#4) 
Offline
GimpChat Member
User avatar

Joined: Oct 29, 2010
Posts: 711
Location: Netherlands
I edited my first post.
Gerard.

_________________
Gentoo Linux always up-to-date.
Kernel-3.17.4 Python-2.7.8/3.3.5
Gimp-2.8.14

I use Linux only.
And Virtualbox with Win 7


Top
 Post subject: Re: Looking for insight/help - Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:22 pm  (#5) 
Offline
GimpChat Member

Joined: Mar 04, 2011
Posts: 2446
The 7zip command will be (x to keep the directory structure -o for the output directory - no space between the o and the /opt))

sudo 7z x -o/opt gimp-2.7.4..blah...7z

remember that pressing the tab key will autocomplete those long filenames.

Now this is a 64 bit version so I hope you have 64 bit Ubuntu installed. I haven't so I can only go so far.

I would try, in a terminal, changing to the gimp directory
cd /opt/gimp-2.7.4/bin

then maybe try running the gimp-2.7.4 file ( it is a script to set paths and start gimp-2.7.4-binary)
maybe a dot-slash as per ./gimp-2.7.4

the reports from the link you gave were a mixed so don't get your hopes up
best of luck

_________________
Image


Top
 Post subject: Re: Looking for insight/help - Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:23 pm  (#6) 
Offline
GimpChat Member
User avatar

Joined: Sep 29, 2011
Posts: 120
Location: Texas
@ubuntu:~$ sudo cp ./Desktop/gimp-2.7.4 /opt
[sudo] password for xxx:
cp: omitting directory `./Desktop/gimp-2.7.4'
xxx@ubuntu:~$

so I changed it to be recursive
sudo cp -r ./Desktop/gimp-2.7.4 /opt

OMG it worked...and initiated!!!

thanks Gerard!

_________________
“There´s tools and colours for all of us,
to lend from nature to make the world
more understandable and beautiful”.

Image


Top
 Post subject: Re: Looking for insight/help - Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:25 pm  (#7) 
Offline
GimpChat Member
User avatar

Joined: Sep 29, 2011
Posts: 120
Location: Texas
rich2005 wrote:
The 7zip command will be (x to keep the directory structure -o for the output directory - no space between the o and the /opt))


Now this is a 64 bit version so I hope you have 64 bit Ubuntu installed. I haven't so I can only go so far.



the reports from the link you gave were a mixed so don't get your hopes up
best of luck


I am running 64 bit and thank you as well for your insights, I'm learning a lot already!

_________________
“There´s tools and colours for all of us,
to lend from nature to make the world
more understandable and beautiful”.

Image


Top
 Post subject: Re: Looking for insight/help - Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:29 pm  (#8) 
Offline
GimpChat Member
User avatar

Joined: Oct 29, 2010
Posts: 711
Location: Netherlands
When in doubt where you are in the tree enter this:
pwd

It will tell you.
Gerard.

_________________
Gentoo Linux always up-to-date.
Kernel-3.17.4 Python-2.7.8/3.3.5
Gimp-2.8.14

I use Linux only.
And Virtualbox with Win 7


Top
 Post subject: Re: Looking for insight/help - Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:31 pm  (#9) 
Offline
GimpChat Member
User avatar

Joined: Sep 29, 2011
Posts: 120
Location: Texas
I'm just kind of proud I had the thought I had to copy duhhh subfolders to and made it recursive!

*pats my back*

Mega mega thanks

_________________
“There´s tools and colours for all of us,
to lend from nature to make the world
more understandable and beautiful”.

Image


Top
 Post subject: Re: FIXED!!!- Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:54 pm  (#10) 
Offline
GimpChat Member
User avatar

Joined: Oct 29, 2010
Posts: 711
Location: Netherlands
This might be useful when you use the command line:
http://ss64.com/bash/
Gerard.

_________________
Gentoo Linux always up-to-date.
Kernel-3.17.4 Python-2.7.8/3.3.5
Gimp-2.8.14

I use Linux only.
And Virtualbox with Win 7


Top
 Post subject: Re: FIXED!!!- Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 12:56 pm  (#11) 
Offline
GimpChat Member
User avatar

Joined: Nov 09, 2011
Posts: 726
Ubuntu users can install the latest version of Gimp from PPA:
https://launchpad.net/~otto-kesselgulasch/+archive/gimp

_________________
Image
Be patient, English is not my language.


Top
 Post subject: Re: FIXED!!!- Ubuntu Gimp Install of 2.7.4
PostPosted: Sat Apr 21, 2012 2:31 pm  (#12) 
Offline
GimpChat Member
User avatar

Joined: Sep 29, 2011
Posts: 120
Location: Texas
ohh bookmarked Gerard thanks again!

Yafu, thank you as well...now that I got the process down...I may try that....as now I am stuck on the gmic adding.....I got it in, but when starting gmic up within gimp, I got an error message from gmic about obsolete files or somesuch...then used the software thing to install gmic and now it's totally separate from my gimp, so that's no good.

But this whole journey has been an absolute wonderous learning process. Thank you all.

_________________
“There´s tools and colours for all of us,
to lend from nature to make the world
more understandable and beautiful”.

Image


Top
Post new topic Reply to topic  [ 12 posts ] 

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) Errors (some) in G'MIC SQUIGGLY (FIXED)

4

No new posts Attachment(s) today error on some G'MIC filters (fixed on pre 2.9.8)

8

No new posts Parse Device Data size Error - FIXED

5

No new posts Attachment(s) Custom Font Layers With Fixed Margins: Version 0.03 for Gimp 2.10

1

No new posts Attachment(s) Early stage new version of Custom Font Layers with Fixed Margins

7



* Login  



Powered by phpBB3 © phpBB Group