LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-22-2012, 02:13 PM   #1
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Rep: Reputation: 32
Gimp


Hello, I am trying to create custom brushes and know in the windows you just copy and paste the images into c:\program files\gimp2.0\share\gimp\2.0\brushes.

What is the location for Ubuntu 11.04?

Thanks in advance
Siawacsh
 
Old 07-22-2012, 02:44 PM   #2
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by siawash View Post
Hello, I am trying to create custom brushes and know in the windows you just copy and paste the images into c:\program files\gimp2.0\share\gimp\2.0\brushes.

What is the location for Ubuntu 11.04?
Easiest way to see where things are (providing you installed from package, instead of source), is to do an "rpm -ql <package name>". So, an "rpm -ql gimp" should give you a complete listing of where all the files for that package are installed.

If it doesn't work, a quick trick is to do "rpm -qa | grep -i <some string>", to look for the package name. Sometimes, instead of "gimp", it'll be "gimp2". The "-i" means do a case-insensitive search. The command will return a list of ALL packages containing the string. One look at the screen should tell you what to use for the first command.
 
Old 07-22-2012, 03:19 PM   #3
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
there are TWO gimp locations BESIDES the third in your HOME folder
~/.gimp-2.6/

-- 64 bit os---
/use/lib64/gimp/2.0/
/usr/share/gimp/2.0/

and save the brush IN the gimp "brush" image format (*.gbr)
your own personal ones should be placed in your home folder
~/.gimp-2.6/brushes/
 
1 members found this post helpful.
Old 07-22-2012, 03:20 PM   #4
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Just had a look on my system and there's a folder /usr/share/gimp/2.0/brushes but I don't know whether that is the correct one.
Not sure whether rpm works under Ubuntu but if not the following ought to work to show you where GIMP's files are:
Code:
sudo dpkg -L gimp
Edit: John VV beat me to it with a full answer.

Last edited by 273; 07-22-2012 at 03:21 PM.
 
1 members found this post helpful.
Old 07-22-2012, 03:33 PM   #5
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Original Poster
Rep: Reputation: 32
Thanks guys, especially John VV!
 
Old 07-22-2012, 03:56 PM   #6
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Original Poster
Rep: Reputation: 32
Please ignore this.

Last edited by siawash; 07-22-2012 at 04:09 PM.
 
Old 07-22-2012, 04:19 PM   #7
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
i have been using Gimp since about 2001
building it on XP using Mingw and in MS's Visual Studio ( not recommended for the faint of hart) and on linux OS's

so issues like where is something are no problem

if you have any questions feel free to ask
PS. i answer all PM's in the forums here so that EVERYONE can find the answer
 
Old 07-22-2012, 04:27 PM   #8
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Original Poster
Rep: Reputation: 32
Thanks so much for the kind offer. I am taking a tutorial on Udemy which ironically is based on the windows version. I will try not to burden you with too many questions.
 
Old 07-22-2012, 08:45 PM   #9
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally Posted by TB0ne View Post
Easiest way to see where things are (providing you installed from package, instead of source), is to do an "rpm -ql <package name>". So, an "rpm -ql gimp" should give you a complete listing of where all the files for that package are installed.

If it doesn't work, a quick trick is to do "rpm -qa | grep -i <some string>", to look for the package name. Sometimes, instead of "gimp", it'll be "gimp2". The "-i" means do a case-insensitive search. The command will return a list of ALL packages containing the string. One look at the screen should tell you what to use for the first command.
Actually ... RPM doesn't come installed with *buntu's by default. dpkg is the weapon
of choice for such queries in debian (and its derivatives).
 
Old 07-23-2012, 08:49 AM   #10
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by Tinkster View Post
Actually ... RPM doesn't come installed with *buntu's by default. dpkg is the weapon
of choice for such queries in debian (and its derivatives).
Indeed...good catch, and I overlooked that when the OP posted. My apologies to all for muddying the waters.
 
Old 08-17-2012, 11:34 AM   #11
siawash
Member
 
Registered: Jun 2004
Location: Ireland
Distribution: Zorin 6
Posts: 589

Original Poster
Rep: Reputation: 32
fonts

Hello John, can tell me which folder can be used to install new fonts? I cannot find them here

Code:
ls /usr/lib64/gimp/2.0 -la
total 36
drwxr-xr-x 7 root root  4096 2012-01-31 00:11 .
drwxr-xr-x 3 root root  4096 2012-01-31 00:11 ..
drwxr-xr-x 2 root root  4096 2012-01-31 00:11 environ
drwxr-xr-x 2 root root  4096 2012-01-31 00:11 interpreters
drwxr-xr-x 2 root root  4096 2012-01-31 00:11 modules
drwxr-xr-x 2 root root 12288 2012-07-22 21:21 plug-ins
drwxr-xr-x 2 root root  4096 2012-01-31 00:11 python
siawacsh@siawacsh-sager:~$
Code:
ls /usr/share/gimp/2.0 -la
total 84
drwxr-xr-x 15 root root  4096 2012-01-31 00:11 .
drwxr-xr-x  3 root root  4096 2012-01-31 00:11 ..
drwxr-xr-x  2 root root  4096 2012-07-22 21:21 brushes
drwxr-xr-x  2 root root  4096 2012-01-31 00:11 fractalexplorer
drwxr-xr-x  2 root root  4096 2012-01-31 00:11 gfig
drwxr-xr-x  2 root root  4096 2012-01-31 00:11 gflare
drwxr-xr-x  5 root root  4096 2012-01-31 00:11 gimpressionist
drwxr-xr-x  2 root root  4096 2012-01-31 00:11 gradients
drwxr-xr-x  2 root root  4096 2012-01-31 00:11 images
drwxr-xr-x  2 root root  4096 2012-01-31 00:11 menus
drwxr-xr-x  2 root root  4096 2012-01-31 00:11 palettes
drwxr-xr-x  2 root root 12288 2012-07-22 21:21 patterns
drwxr-xr-x  3 root root 20480 2012-01-31 00:19 scripts
drwxr-xr-x  4 root root  4096 2012-01-31 00:11 themes
drwxr-xr-x  2 root root  4096 2012-01-31 00:11 tips
Quote:
Originally Posted by John VV View Post
there are TWO gimp locations BESIDES the third in your HOME folder
~/.gimp-2.6/

-- 64 bit os---
/use/lib64/gimp/2.0/
/usr/share/gimp/2.0/

and save the brush IN the gimp "brush" image format (*.gbr)
your own personal ones should be placed in your home folder
~/.gimp-2.6/brushes/

Last edited by siawash; 08-17-2012 at 11:38 AM.
 
Old 08-17-2012, 08:58 PM   #12
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
fonts go in your home folder
fonts are SO EASY TO INSTALL ( and i do mean WAY TOO EASY )
copy them to
~/.fonts
/home/YourUserName/.fonts

then start gimp
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: GIMP Painter And GIMP Paint Studio Transform GIMP Into The Ultimate Painting Tool LXer Syndicated Linux News 0 02-08-2011 05:40 PM
LXer: Gimp Paint Studio(GPS)- A collection of brushes and accompanying tool presets for GIMP LXer Syndicated Linux News 0 02-02-2011 02:13 AM
LXer: Gimp Paint Studio [Gimp Optimized for Drawing and Painting] LXer Syndicated Linux News 0 05-04-2009 01:30 PM
LXer: Bring Out the GIMP Part 1: GIMP Basics LXer Syndicated Linux News 0 06-30-2007 05:16 PM
printing on HP PhotoSmart from Gimp 2.2, gimp-print drivers needed? pearman Debian 2 08-05-2005 04:19 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:33 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration