LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-09-2016, 08:31 AM   #1
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Rep: Reputation: 50
How to install g'mic plugin onto gimp with Debian Jessie


When I installed the debian OS it came with GIMP image editor as part of the package.
I have since found there is a g'mic plugin with added editing functions which can be downloaded.
The GIMP website says linux OSs will have the g'mic plugin in their own repos.
So what is the command to install g'mic onto the existing GIMP software on the debian OS?
Thanks for reading.
 
Old 10-09-2016, 01:29 PM   #2
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
did you read the instructions on the source code?

it is a command line tool and a gimp plugin
two programs are built
read the README , then the makefile in the src folder

the makefile is well DOCUMENTED
to quote it
Quote:
File : Makefile
# ( Makefile for GNU 'make' utility )
#
# Description : Makefile for compiling :
#
# . the G'MIC command line tool (type 'make cli').
# . the G'MIC plug-in for GIMP (type 'make gimp').
# . the G'MIC interpreter, as a C++ library (type 'make lib').
# . the G'MIC C library (type 'make libc' or 'make staticlibc').
# . the ZArt software (type 'make zart').
# . To compile all of them, just type 'make', or 'make all').
#
# ( http://gmic.eu )
#
# Copyright : David Tschumperle
# ( http://tschumperle.users.greyc.fr/ )
#
# License : CeCILL v2.0
# ( http://www.cecill.info/licences/Lice...ILL_V2-en.html )
if you do not need a security camera options disable the "zart" part of the make file or do not build it

to build and install
Code:
make all
------ or this -----
make cli
make gimp 

su 
---- root password ----

make install
this installs it to the default /usr

Last edited by John VV; 10-09-2016 at 01:31 PM.
 
Old 10-09-2016, 01:38 PM   #3
TITiAN
Member
 
Registered: Mar 2008
Location: NRW, Germany
Distribution: Arch Linux, using KDE/Plasma
Posts: 392

Rep: Reputation: 49
It says here that there is a package gimp-gmic. Have you tried that? (It's recommended because the version should automatically match with the GIMP etc.).
 
1 members found this post helpful.
Old 10-09-2016, 01:44 PM   #4
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
the make file makes use of the "gimptool" installed with gimp
and therefor matches the version of gimp installed
 
Old 10-09-2016, 03:20 PM   #5
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Original Poster
Rep: Reputation: 50
Quote:
Originally Posted by John VV View Post
did you read the instructions on the source code?
No, I haven't read the instructions on the source code. I'm not familiar with installing source code and then compiling it.

G'mic is a plugin to the GIMP software. I was wondering if debian had an apt-get command to install a plugin to existing software.

With MS and Mac OS, I think G'mic can be simply downloaded and installed onto the existing software. These OSs don't normally compile source code.
 
Old 10-09-2016, 03:31 PM   #6
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Original Poster
Rep: Reputation: 50
Quote:
Originally Posted by TITiAN View Post
It says here that there is a package gimp-gmic. Have you tried that? (It's recommended because the version should automatically match with the GIMP etc.).
I went to the link you've provided and then ran the command
Code:
apt-get install gimp-gmic
.
My GIMP software now has G'mic installed. However it doesn't work. From the link given, it seems I may be missing a number of dependencies.

A plugin for Firefox on debian can be installed by the click of one button.
I was wondering if it was possible to do the same for the G'mic plugin on debian as well.

The debian link is informative but not useful. The ubuntu help sites are much more useful. But I haven't come across one about G'mic.
 
Old 10-09-2016, 03:34 PM   #7
TITiAN
Member
 
Registered: Mar 2008
Location: NRW, Germany
Distribution: Arch Linux, using KDE/Plasma
Posts: 392

Rep: Reputation: 49
Quote:
Originally Posted by Higgsboson View Post
No, I haven't read the instructions on the source code. I'm not familiar with installing source code and then compiling it.

G'mic is a plugin to the GIMP software. I was wondering if debian had an apt-get command to install a plugin to existing software.

With MS and Mac OS, I think G'mic can be simply downloaded and installed onto the existing software. These OSs don't normally compile source code.
apt-get install gimp-gmic
 
1 members found this post helpful.
Old 10-09-2016, 03:40 PM   #8
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
what do you MEAN be "it dose not work"???????
open a image in gimp and at the bottom of the "filters" menu is G'Mic

CLICK IT!!!!

that opens up a new gui window with a ton of filters

or

are you referring to the terminal version that can handle 16 bit,32 bit , and 64 bit images
THAT is not the gimp plugin

Code:
gmic --help 
------- and this ------
man gmic
 
1 members found this post helpful.
Old 10-09-2016, 03:43 PM   #9
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Original Poster
Rep: Reputation: 50
Quote:
Originally Posted by John VV View Post
the make file makes use of the "gimptool" installed with gimp
and therefor matches the version of gimp installed
Thank you. What command might a newbie use to install G'mic on debian?

This website http://gmic.eu/download.shtml is saying I can click a button to add a plugin on existing software. It's not asking me to read source code or compile software.
However, I was wondering if I could install g'mic through the debian repos instead.
 
Old 10-09-2016, 03:46 PM   #10
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
Quote:
What command might a newbie use to install G'mic on debian?
for the terminal ( text only - you have to type commands) see post #2
Code:
make cli
make install
this is if you have all the dependencies installed
like gcc and autotools and build essentials
 
Old 10-09-2016, 03:49 PM   #11
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Original Poster
Rep: Reputation: 50
Quote:
Originally Posted by John VV View Post
what do you MEAN be "it dose not work"???????
open a image in gimp and at the bottom of the "filters" menu is G'Mic

CLICK IT!!!!

that opens up a new gui window with a ton of filters
Ok, you're right.
I have to 'double-click' on the filter for the filter variables to appear on the right-hand pane.
Thank you very much.
 
Old 10-09-2016, 03:50 PM   #12
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Original Poster
Rep: Reputation: 50
Quote:
Originally Posted by John VV View Post
for the terminal ( text only - you have to type commands) see post #2
Code:
make cli
make install
this is if you have all the dependencies installed
like gcc and autotools and build essentials
Very interesting.
However, your previous reply has sorted out the problem.
 
Old 10-10-2016, 09:52 AM   #13
TITiAN
Member
 
Registered: Mar 2008
Location: NRW, Germany
Distribution: Arch Linux, using KDE/Plasma
Posts: 392

Rep: Reputation: 49
Quote:
Originally Posted by Higgsboson View Post
Thank you. What command might a newbie use to install G'mic on debian?

This website http://gmic.eu/download.shtml is saying I can click a button to add a plugin on existing software. It's not asking me to read source code or compile software.
However, I was wondering if I could install g'mic through the debian repos instead.
apt-get install gimp-gmic
 
  


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
[SOLVED] How to install g'mic plugin for gimp on Slackware 14.2 KDE 64 bit? Bourbon Slackware 13 07-08-2016 10:35 AM
LXer: How to install ownCloud 8 on Debian 8 (Jessie) LXer Syndicated Linux News 0 07-02-2015 10:20 AM
[SOLVED] Fedora 18 GIMP G'MIC plugin installed but not available to use. nando321 Fedora 3 01-21-2013 08:06 PM
LXer: G'MIC- Great Plugin with a collection of more than 190 filter and effect for Gimp LXer Syndicated Linux News 0 10-06-2010 03:50 PM
gimp install plugin darkleaf Linux - Software 1 03-12-2007 11:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:02 PM.

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