[Gimp-user] gutenprint compatible printers?

2009-01-26 Thread lorenzo
>I am using gimp 2.6.4 under Fedora 9.   I also have gutenprint 5.0.2.
>
>I have been using an Epson 1280. but I would like to be able to replace
>it if it fails.  (I just had a very hard time cleaning the printheads.)
>
>gutenprint tells me is supports the Epson Stylus Photo R1800 and R2400,
>but neither of these seems to be available.   Can I assume the Epson
>Stylus Photo R1900 is just an updated version of the R1800.  How about
>the Epson Stylus Photo 2880 and the R2400?
>
>Is there some way under gimp/Linux to print using the Epson 3800?
>

i have the epson r2400 that i have been using for some time with xp. i
recently have been trying to make it work with ubuntu 8.10 here is the
printer/driver data: Epson Stylus Photo R2400 - CUPS+Gutenprint v5.2.0-rc1.
the problem i have with it is that it won't print wider than 8.5" or longer
than 11".it just crops the image and prints it in one corner of a large format
paper. i believe that it is a problem with the driver, perhaps a #define'd
constant when there should be a variable in one of the routines. i'm hoping to
find a solution to the problem but until then i'm stuck with mrbill. i print
almost entirely large format, up to 13x26 inches.

-- 
lorenzo
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] facing difficulty in irunning gimp

2009-01-26 Thread saulgoode
Quoting Nicholas I :

>  i am using ubuntu 8.3, i did a sudo apt-get install gimp, it did not
> upgraded to the newest version, ...

Your repositories probably do not have the newest version available.

> ... i tried installing from source but i had lot
> of problem in installing it. i just left it.

If you reached the point of performing 'sudo make install' then you  
have installed the new version of GIMP. If you used the default PREFIX  
then it was installed to /usr/local/ .

You should not have "just left it". You should remove it. You can  
remove it using 'sudo make uninstall' from the source build directory  
(the same directory in which you ran 'sudo make install'). You could  
also do something such as the following (but it is a little bit risky,  
depending on what you have in /usr/local):

find /usr/local -name gimp\* -exec sudo rm -vr {} \;

> now when i run gimp from command propmt
>
> i get the following error.
>
> *Libgimp version mismatch!
>
> The GIMP binary cannot run with a libgimp version
> other than its own. This is GIMP 2.4.5, but the
> libgimp version is 2.6.0.
>
> Maybe you have GIMP versions in both /usr and /usr/local ?*
>
>
> i tried renaming the folders but still the problem is not solved.

I do not know what this means.

> any help? please

If you want to compile GIMP from source but retain a packaged version,  
I would recommend using a PREFIX of '/opt/gimp' or somesuch.

 ./configure --prefix=/opt/gimp && make && sudo make install

Do not install to '/usr/local' because '/usr/local/lib' is typically  
included in the library search path (by virtue of it being listed in  
'/etc/ld.so.conf') and your packaged version of GIMP will try to link  
to the GIMP libraries in '/usr/local/lib'. (This is likely the problem  
you encountered.)

When you install GIMP to '/opt/gimp', the GIMP libraries will be  
created in '/opt/gimp/lib' which is not part of the default library  
search and so they will not interfere with the packaged version.

In order to run your new version, you will have to specify where its  
libraries are to be found (since '/opt/gimp/lib' is not in the library  
search path). This is typically done by setting the LD_LIBRARY_PATH  
environment variable and then invoking your new GIMP:

LD_LIBRARY_PATH=/opt/gimp/lib /opt/gimp/bin/gimp

Do not set LD_LIBRARY_PATH globally (e.g., in your .bashrc) as this  
will interfere with your packaged GIMP. It would probably be best to  
create a shell script which executes the above command; that way  
LD_LIBRARY_PATH will only be redefined within the script and not  
interfere with other programs.



___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] facing difficulty in irunning gimp

2009-01-26 Thread Claus Cyrny
Nicholas I wrote:
> hi,
> 
>  i am using ubuntu 8.3

You probably mean 8.4 ("Hardy").

  i did a sudo apt-get install gimp, it did not
> upgraded to the newest version, i tried installing from source but i had 
> lot of problem in installing it. i just left it.
> 
> now when i run gimp from command propmt
> 
> i get the following error.
> 
> *Libgimp version mismatch!
> 
> The GIMP binary cannot run with a libgimp version
> other than its own. This is GIMP 2.4.5, but the
> libgimp version is 2.6.0.

For some reason, you have libgimp for Gimp 2.6 installed that doesn't
match Gimp 2.4.5. You need to a) uninstall the present libgimp (via
Synaptic), b) get the appropriate libgimp for 2.4.5 (as a .deb file)

http://launchpadlibrarian.net/12511801/libgimp2.0-doc_2.4.5-1ubuntu2_all.deb

and c) install it via 'sudo dpkg install ' or
'sudo gdebi '.

HTH,

Claus

-- 
Claus Cyrny : Webdesign |  Grafik | Fotografie
:: Web: http://home.arcor.de/ccyrny/ ::.
:: Fotos: http://photo.net/photodb/slideshow?folder_id=714471 ::.
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Gimp 2.6.1 on Ubuntu 8.10

2009-01-26 Thread Claus Cyrny
Claus Cyrny wrote:

> Olivier Lecarme wrote:
>> Claus Cyrny  wrote:
>>> libpoppler IS there, as are librsvg, libexif, and libgnomeui-2.0
>>> (I didn't check the rest). Does anyone know what's the matter here?
>>> I downloaded the source from the FTP site (the link is included on
>>> the Download page at gimp.org).
>> You need the headers of the libraries. In dpkg or apt-get words, you
>> need the xxx-dev packages. For example, libpoppler-dev, librsvg-dev, and
>> to on.
>>
> 
> I just installed all dev libraries.
> 
> Merci beaucoup, ;-)
> 
> Claus
> 

I now did compile Gimp 2.6.4 successfully, but the bug (or whatever
this is) remains, :( so that I am forced to install 2.4.7
again, until I have the money to buy an up-to-date PC. :(

BTW, I'm beginning to like the new interface as well as the
improved menu structure, albeit it is different from the one I
am used to. I really regret it that it turned out that way, but
I see no other solution at the moment.

Thanks anyway to all who responded,

Claus

-- 
Claus Cyrny : Webdesign |  Grafik | Fotografie
:: Web: http://home.arcor.de/ccyrny/ ::.
:: Fotos: http://photo.net/photodb/slideshow?folder_id=714471 ::.
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] facing difficulty in irunning gimp

2009-01-26 Thread Michael Schumacher
> Von: Nicholas I 


>  i am using ubuntu 8.3

What is Ubuntu 8.3?
-- 
NUR NOCH BIS 31.01.! GMX FreeDSL - Telefonanschluss + DSL 
für nur 16,37 EURO/mtl.!* http://dsl.gmx.de/?ac=OM.AD.PD003K11308T4569a
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user