Re: [newbie] Image viewer

2004-04-15 Thread Philip Cronje
On Wed, 14 Apr 2004 18:23:27 -0400, Marv Boyes [EMAIL PROTECTED] wrote:
 I'm going to grok this stuff some day, I promise. ;)
A good place for info would be to go onto the Mandrake site. Somewhere around the 
Cooker pages (I think?) there should be a link to the Mandrake RPM HOWTO. Really nice 
source for basic info about how the whole RPM building process works.

//philip


pgp0.pgp
Description: PGP signature


Re: [newbie] Image viewer

2004-04-14 Thread Marv Boyes
Philip Cronje wrote:
On Tue, 13 Apr 2004 00:17:24 -0400, Marv Boyes [EMAIL PROTECTED] wrote:

Okay, next question: how do I uninstall software that I've compiled from
source? ;)
erk... seems you misunderstood me. when you run rpm --rebuild, it should automagically do 
the configure-make-makeinstall bit for you. the BUILD directory is where that is 
done. the *real* product of rpm --rebuild lives in the RPMS directory, more specifically, the 
RPMS/i586 directory.
That's the point of SRPMS. To build an RPM from the sources, all nice and dandy and 
working, so that you can just go rpm -ivh on that RPM file.
Oops-- I thought all that did was generate the makefiles  such, 
tailored to my system and ready for install.

So could the problem be that I broke what rpm --rebuild did by manually 
re-installing over top of its work? And if so, should I make the effort 
to track everything down by tracing back though the makefile (as Stephen 
suggested), or would another run of rpm --rebuild be likely to 'just work'?

I'm going to grok this stuff some day, I promise. ;)

Thanks, everyone.
Marv
--
Help in the research to find cures for devastating diseases like
Huntington's, Parkinson's, and Alzheimer's-- donate your computer's
leisure time to [EMAIL PROTECTED]
http://www.stanford.edu/group/pandegroup/folding/
--
The best way to accelerate a Windows box is at 9.8 meters per second per 
second.



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-14 Thread Hoyt Bailey
On Wednesday 14 April 2004 17:23, Marv Boyes wrote:
 Philip Cronje wrote:
  On Tue, 13 Apr 2004 00:17:24 -0400, Marv Boyes [EMAIL PROTECTED] 
wrote:
 Okay, next question: how do I uninstall software that I've compiled
  from source? ;)
 
  erk... seems you misunderstood me. when you run rpm --rebuild, it
  should automagically do the configure-make-makeinstall bit for
  you. the BUILD directory is where that is done. the *real* product
  of rpm --rebuild lives in the RPMS directory, more specifically,
  the RPMS/i586 directory. That's the point of SRPMS. To build an RPM
  from the sources, all nice and dandy and working, so that you can
  just go rpm -ivh on that RPM file.

 Oops-- I thought all that did was generate the makefiles  such,
 tailored to my system and ready for install.

 So could the problem be that I broke what rpm --rebuild did by
 manually re-installing over top of its work? And if so, should I make
 the effort to track everything down by tracing back though the
 makefile (as Stephen suggested), or would another run of rpm
 --rebuild be likely to 'just work'?

 I'm going to grok this stuff some day, I promise. ;)


 Thanks, everyone.
 Marv
 --
 Help in the research to find cures for devastating diseases like
 Huntington's, Parkinson's, and Alzheimer's-- donate your computer's
 leisure time to [EMAIL PROTECTED]
 http://www.stanford.edu/group/pandegroup/folding/
 --
 The best way to accelerate a Windows box is at 9.8 meters per second
 per second.
If you did it right, no changes, then the rpm should be able to 
uninstall the program so --rebuild showld work as well.  man rpm
-- 
Regards;
Hoyt

Ignore the past and you will fail!
Ignore the future and you have already failed!



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-13 Thread Stephen Kuhn
On Tue, 2004-04-13 at 14:17, Marv Boyes wrote:

 Okay, next question: how do I uninstall software that I've compiled from
 source? ;)

That's a bit tricky. You're going to have to know what libs are where,
what binaries are there, and whatever else is residual - which is always
a nice reason to have the source code still in place along with the
rest...so by backtracing through the make install procedure (dig
through the makefile) you can effectively figure out what needs to be
removed. Sounds tough, but it's a way to get to know what goes where.

 I did what I _thought_ was the right stuff (./configure, make, make
 install), but I've ended up, literally hours later, with nothing. The
 application doesn't run; it's like it's not even there (which, I'm 
 guessing, it isn't). Aside from one file each in 
 /usr/share/application-registry and /usr/share/mime-info,
 all a file search reveals are the original .rpm file, and the stuff that
 ended up in /usr/src/[etc].

...er, did you put the stuff where Mandrake wants it to be in order for
the libs to work properly and the binaries to work properly?


stephen kuhn - owner
==
illawarra computer services
a kuhn media australia company
http://kma.0catch.com
--
  * This message was composed on a 100% Microsoft free computer *
  We expressly refuse to utilise Microsoft DRM encoded documents
--
You're at the end of the road again.



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-13 Thread LtCdData
ive never actually needed to do this.. but cant you do a make uninstall? 

On Tuesday 13 Apr 2004 H:11, Stephen Kuhn wrote:
 On Tue, 2004-04-13 at 14:17, Marv Boyes wrote:
  Okay, next question: how do I uninstall software that I've compiled from
  source? ;)

 That's a bit tricky. You're going to have to know what libs are where,
 what binaries are there, and whatever else is residual - which is always
 a nice reason to have the source code still in place along with the
 rest...so by backtracing through the make install procedure (dig
 through the makefile) you can effectively figure out what needs to be
 removed. Sounds tough, but it's a way to get to know what goes where.

  I did what I _thought_ was the right stuff (./configure, make, make
  install), but I've ended up, literally hours later, with nothing. The
  application doesn't run; it's like it's not even there (which, I'm
  guessing, it isn't). Aside from one file each in
  /usr/share/application-registry and /usr/share/mime-info,
  all a file search reveals are the original .rpm file, and the stuff that
  ended up in /usr/src/[etc].

 ...er, did you put the stuff where Mandrake wants it to be in order for
 the libs to work properly and the binaries to work properly?


 stephen kuhn - owner
 ==
 illawarra computer services
 a kuhn media australia company
 http://kma.0catch.com
 --
   * This message was composed on a 100% Microsoft free computer *
   We expressly refuse to utilise Microsoft DRM encoded documents
 --
 You're at the end of the road again.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-13 Thread Stephen Kuhn
On Wed, 2004-04-14 at 01:31, LtCdData wrote:
 ive never actually needed to do this.. but cant you do a make uninstall? 

I'd rather not - just in case some libs are being used by something
else...amongst other things.

stephen kuhn - owner
==
illawarra computer services
a kuhn media australia company
http://kma.0catch.com
--
  * This message was composed on a 100% Microsoft free computer *
  We expressly refuse to utilise Microsoft DRM encoded documents
--
Maslow's Maxim: If the only tool you have is a hammer, you treat
everything like a nail.



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-12 Thread Philip Cronje
On Sun, 11 Apr 2004 22:49:13 -0400, Marv Boyes [EMAIL PROTECTED] wrote:
 I'm not out to get you, Philip-- honest! ;)
Suuure, suuure... ;D

 Yeah, I tried that one once. Installs fine, but I get this when I try to 
 launch it:
 
 pixie: relocation error: /usr/lib/pixie.so: undefined symbol: 
 _ZN11KMainWindow4showEv
 
 Do you think this might be due to the RPM being a build for Cooker, 
 rather than for 9.2? Or might be related to the nonstandard KDE 
 directory structure in Mandrake that the app's developer complains about?
Nah, this is because of the different KDE libraries in 9.2 and 10.0. I thought it 
might be like that, but hey, it's always worth trying ;)

 Do you think there's any chance that installing from the 
 pixieplus-0.5.4-6mdk _source_ RPM would make any difference (and if so, 
 where does that source end up when I install the RPM)?
If you do grab the source RPM, you should run the following command on it:
rpm --rebuild pixieplus-0.5.4-6mdk.src.rpm
This will build the pixieplus binary RPM for your system. I think the default RPM 
configuration will drop it into /usr/src/RPM/RPMS/i586.

(If you run 'rpm -ivh' on a source RPM, it extracts the sources to the 
/usr/src/RPM/{SOURCES,SPECS} directories)

If you really hit a brick wall on this one, I can always build the RPM for you on the 
MDK9.2 system we have here at home and magick it to you. :)

//philip


pgp0.pgp
Description: PGP signature


Re: [newbie] Image viewer

2004-04-12 Thread Marv Boyes
Philip Cronje wrote:

If you do grab the source RPM, you should run the following command
on it: rpm --rebuild pixieplus-0.5.4-6mdk.src.rpm This will build the
pixieplus binary RPM for your system. I think the default RPM
configuration will drop it into /usr/src/RPM/RPMS/i586.
(If you run 'rpm -ivh' on a source RPM, it extracts the sources to
the /usr/src/RPM/{SOURCES,SPECS} directories)
If you really hit a brick wall on this one, I can always build the
RPM for you on the MDK9.2 system we have here at home and magick it
to you. :)
//philip
Okay, next question: how do I uninstall software that I've compiled from
source? ;)
I did what I _thought_ was the right stuff (./configure, make, make
install), but I've ended up, literally hours later, with nothing. The
application doesn't run; it's like it's not even there (which, I'm 
guessing, it isn't). Aside from one file each in 
/usr/share/application-registry and /usr/share/mime-info,
all a file search reveals are the original .rpm file, and the stuff that
ended up in /usr/src/[etc].

I configured, made, and installed from what rpm --rebuild gave me in
/usr/src/RPMS/BUILD-- though there was also a .tar.gz in 
/usr/src/RPM/SOURCES after the rpm rebuild. Should I have unpacked 
_that_ and used it? Or does it make a difference? And why doesn't 
anydamnedthing ever work for me? ;)

Thanks,
Marv
--
Help in the research to find cures for devastating diseases like
Huntington's, Parkinson's, and Alzheimer's-- donate your computer's
leisure time to [EMAIL PROTECTED]
http://www.stanford.edu/group/pandegroup/folding/
--
The best way to accelerate a Windows box is at 9.8 meters per second per
second.

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-11 Thread John Wilson
On April 10, 2004 09:24 pm, Stephen Kuhn wrote:

 Good point. Not like I'd actually admit to being a perv.

Just hint at it, eh Mate? :)

ttfn

John


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-11 Thread M.Schild

  DOM == Dirty Old Man. Synonyms include reprobate, lecher, pervert. In
  Brazil, they can be found strolling along the incredible beautiful
  beaches staring at the even more incredible female occupants. Or so I've
  heard.


I have seen the male occupants and yes, they are incredible too
Maryse


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-11 Thread Stephen Kuhn
On Sun, 2004-04-11 at 18:36, John Wilson wrote:
 On April 10, 2004 09:24 pm, Stephen Kuhn wrote:
 
  Good point. Not like I'd actually admit to being a perv.
 
 Just hint at it, eh Mate? :)
 
 ttfn
 
 John

YES I'M A PERV AND CAN'T RESIST GOOD PORN.
I'm a man. Can't help it.

stephen kuhn - owner
==
illawarra computer services
a kuhn media australia company
http://kma.0catch.com
--
  * This message was composed on a 100% Microsoft free computer *
  We expressly refuse to utilise Microsoft DRM encoded documents
--
I know you believe you understand what you think this fortune says, but
I'm not sure you realize that what you are reading is not what it means.



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-11 Thread John Wilson
On April 11, 2004 02:33 am, Stephen Kuhn wrote:
 On Sun, 2004-04-11 at 18:36, John Wilson wrote:
snop
 YES I'M A PERV AND CAN'T RESIST GOOD PORN.
 I'm a man. Can't help it.

There, there, there.  Don't you feel better now that you have that off your 
chest?  Or whatever other part of your anatomy it was resting on? :-)

Confession is good for the soul, don't you know.

Now if you'd just click this link www.spammer.com we can help you with your 
addiction. :-)

ttfn

John


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-11 Thread Philip Cronje
On Sat, 10 Apr 2004 20:32:49 -0400, Marv Boyes [EMAIL PROTECTED] wrote:
 What I _really_ want to try, though, and have been trying to for months, 
 is PixiePlus. I can't get it to run on my system, either compiled form
 source or installed from dedicated Mandrake 9.2 RPMs, because it insists 
 on my having ImageMagick 5.5.4, while Mdk 9.2 came with v5.5.7. It's a
 bit off-topic: but can anyone suggest how I might get this thing to run? 
 It seems to be exactly what I've been looking for in an image manager 
 (i.e., something close to ACDSee, the only Windows app I really miss).
 Any guidance would be greatly appreciated. Thanks in advance.
Marv! We meet again! ;)

A quick search got me this:
http://rpmfind.net//linux/RPM/cooker/contrib/i586/pixieplus-0.5.4-6mdk.i586.html

Begin quote:
Requires
o ...
o libMagick-5.5.7.so.0 
o ...
End quote.

Salutations and stuff
//philip


pgp0.pgp
Description: PGP signature


Re: [newbie] Image viewer

2004-04-11 Thread robin
Carroll Grigsby wrote:
On Saturday 10 April 2004 05:41 pm, Josenildo Marques wrote:

On Sat, 2004-04-10 at 16:16, JoeHill wrote:

On Sat, 10 Apr 2004 12:35:31 -0500

Tom Brinkman disseminated the following:

   I use it as my desktop background, slide show,
...and we all can guess what that slideshow is, you DOM!
DOM:
Unknown word
What is that ? Forbidden language ? :-)


Josenildo:
DOM == Dirty Old Man. Synonyms include reprobate, lecher, pervert. In Brazil, 
they can be found strolling along the incredible beautiful beaches staring at 
the even more incredible female occupants. Or so I've heard.
And here was innocent little me thinking Tom was calling him a Document 
Object Model ;-)

Sir Robin

--
If the lion could speak, we would not understand it.
- Wittgenstein
Robin Turner
IDMYO
Bilkent Universitesi
Ankara 06533
Turkey
www.bilkent.edu.tr/~robin



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-11 Thread Ronald J. Hall
On Sunday 11 April 2004 08:02 pm, robin wrote:

- DOM == Dirty Old Man. Synonyms include reprobate, lecher, pervert. In
 Brazil, - they can be found strolling along the incredible beautiful
 beaches staring at - the even more incredible female occupants. Or so I've
 heard.
-
-And here was innocent little me thinking Tom was calling him a Document
-Object Model ;-)
-
-Sir Robin

Could have been much worse - I was afraid it was DOMinatrix... :-)

-- 

   /\
 Dark Lord
   \/



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-11 Thread Charlie
On Sun, 11 Apr 2004 06:23 am, many eyes viewed Erylon Hines's words:-
  I'm surprised that y'all ain't using ImageMagick's display for quick
  viewing of images...sad sad sad...speed is everything here, mates...
 
  stephen kuhn - owner

 My choice also.  And, it is also a simple-to-use image manipulation
 program.

It does render fonts rather well, and changes images from .wmf to whatever is 
required.

Charlie

-- 
Registered Linux User:- 329524
+
For what are the classics but the noblest thoughts of man? They are the only 
oracles which are not decayed, and there are such answers to the most modern 
inquiry in them as Delphi and Dodona never gave. We might as well omit to 
study Nature because she is old. ...Henry 
David Thoreau

This email is guaranteed to be wholly Linux Mandrake 9.2, KMail v1.5.3
and OpenOffice.org1.1.0



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Image viewer

2004-04-10 Thread Alan Dunford

Like others on this list running Mandrake 10.0, I had a few problems with 
Kuickshow - there is a bug in Qt and I could not get Qt3.3 going.

However I have come across a very similar picturefile viewer called Gwenview 
which seems to do most of the things that Kuickshow does and although it 
appears to have been developed for 9.2,  it does work well with Mandrake 
10.0.

See http://gwenview.sourceforge.net/download#stable

-- 


Alan Dunford [EMAIL PROTECTED]
Mandrake Linux 9.2
A 100% Microsoft-free computer




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread LtCdData
am i the only one that uses gqview ... that comes part of the mandrake 
install ?? 

On Saturday 10 Apr 2004 H:35, Alan Dunford wrote:
 Like others on this list running Mandrake 10.0, I had a few problems with
 Kuickshow - there is a bug in Qt and I could not get Qt3.3 going.

 However I have come across a very similar picturefile viewer called
 Gwenview which seems to do most of the things that Kuickshow does and
 although it appears to have been developed for 9.2,  it does work well with
 Mandrake 10.0.

 See http://gwenview.sourceforge.net/download#stable


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Anne Wilson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Saturday 10 April 2004 16:55, LtCdData wrote:
 am i the only one that uses gqview ... that comes part of the
 mandrake install ??

No, I  use it as well, but then Kuickshow does the slide show, which is 
great for getting a good look at a collection of photos.  It's to be 
hoped they get it sorted, because I'm going to miss it.

Anne
- -- 
Registered Linux User No.293302
Have you visited http://twiki.mdklinuxfaq.org yet?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQFAeB5LkFAvMr/nNX8RAmy/AJ95vzCuzUc81rIqdcR5rV3EW+rE8gCfcf+H
9E0bkbE5JKBPO4f/ephq/bA=
=eTmb
-END PGP SIGNATURE-



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Paul
On 04/10/2004 06:18 PM, Anne Wilson wrote:

am i the only one that uses gqview ... that comes part of the
mandrake install ??
No, I  use it as well, but then Kuickshow does the slide show, which is 
great for getting a good look at a collection of photos.  It's to be 
hoped they get it sorted, because I'm going to miss it.
 

GQview has a slideshow option also. And otherwise you can use qiv.
Run  qiv -itsfru dirname for a slideshow of all images in dirname 
and its subdirectories.  Remove the 'r' in the options to prevent images 
from showing randomly, and the 's' to prevent qiv from following the 
directory tree downwards.  :-)

Paul

--
A truly happy person is one who can enjoy the scenery on a detour.
http://www.nlpagan.net/linux.htm
Have you visited http://twiki.mdklinuxfaq.org yet?


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Paul


Interesting - I hadn't noticed that.  Nor did I know qiv, thanks.  Now 
where is that on the TWiki?  Hmm - Desktop Applications?
 

You have such subtle ways... *grin*

Paul

--
A truly happy person is one who can enjoy the scenery on a detour.
http://www.nlpagan.net/linux.htm
Have you visited http://twiki.mdklinuxfaq.org yet?


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread JoeHill
On Sat, 10 Apr 2004 12:35:31 -0500
Tom Brinkman disseminated the following:

 I use it as my desktop background, slide show,

...and we all can guess what that slideshow is, you DOM! 

-- 
JoeHill
Registered Linux user #282046
Homepage: www.orderinchaos.org
+++
The United States Drug Enforcement Agency estimates pot smuggling from the
western province of British Columbia alone is worth more than $1 billion a year.
This is *very* bad, because Bush and his pals are not seeing one dime of that.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Stephen Kuhn
On Sun, 2004-04-11 at 03:23, JoeHill wrote:
 On Sat, 10 Apr 2004 16:55:32 +0100
 LtCdData disseminated the following:
 
  am i the only one that uses gqview ... that comes part of the mandrake 
  install ?? 
 
 Nope, I love it too!

I'm surprised that y'all ain't using ImageMagick's display for quick
viewing of images...sad sad sad...speed is everything here, mates...

stephen kuhn - owner
==
illawarra computer services
a kuhn media australia company
http://kma.0catch.com
--
  * This message was composed on a 100% Microsoft free computer *
  We expressly refuse to utilise Microsoft DRM encoded documents
--
Vulcans do not approve of violence. -- Spock, Journey to Babel,
stardate 3842.4



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Erylon Hines
On Saturday 10 April 2004 12:28 pm, Stephen Kuhn wrote:
 On Sun, 2004-04-11 at 03:23, JoeHill wrote:
  On Sat, 10 Apr 2004 16:55:32 +0100
 
  LtCdData disseminated the following:
   am i the only one that uses gqview ... that comes part of the mandrake
   install ??
 
  Nope, I love it too!

 I'm surprised that y'all ain't using ImageMagick's display for quick
 viewing of images...sad sad sad...speed is everything here, mates...

 stephen kuhn - owner

My choice also.  And, it is also a simple-to-use image manipulation program.

e



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Aron Smith
On Saturday 10 April 2004 12:28 pm, Stephen Kuhn wrote:
 On Sun, 2004-04-11 at 03:23, JoeHill wrote:
  On Sat, 10 Apr 2004 16:55:32 +0100
 sad sad sad...speed is everything here, mates...
We know thats what your girlfriend said ;-)

 stephen kuhn - owner
 ==
 illawarra computer services
 a kuhn media australia company
 http://kma.0catch.com
 --
   * This message was composed on a 100% Microsoft free computer *
   We expressly refuse to utilise Microsoft DRM encoded documents
 --
 Vulcans do not approve of violence. -- Spock, Journey to Babel,
 stardate 3842.4


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Josenildo Marques
On Sat, 2004-04-10 at 16:16, JoeHill wrote:
 On Sat, 10 Apr 2004 12:35:31 -0500
 Tom Brinkman disseminated the following:
 
  I use it as my desktop background, slide show,
 
 ...and we all can guess what that slideshow is, you DOM! 

DOM:
Unknown word

What is that ? Forbidden language ? :-)

-- 
josenildo marques 
icq #289971493 
homepage http://cyb.ezdir.net
registered linux user #341648
*
Nada é para sempre, dizemos, mas há momentos que parecem ficar
suspensos, pairando sobre o fluir inexorável do tempo. José Saramago



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Glenn
On Saturday 10 April 2004 08:35, Alan Dunford wrote:
 Like others on this list running Mandrake 10.0, I had a few problems with
 Kuickshow - there is a bug in Qt and I could not get Qt3.3 going.

 However I have come across a very similar picturefile viewer called
 Gwenview which seems to do most of the things that Kuickshow does and
 although it appears to have been developed for 9.2,  it does work well with
 Mandrake 10.0.

 See http://gwenview.sourceforge.net/download#stable

Hm. head scratch  I'm not having any problem with Kuickshow under 10.1 
(or previously in 10.0 or 9.2.), and I've used Kuickshow for the slideshow 
function twice today (looking for a T-Shirt design I'm working on). 


-- 
18:10:22 up 12 min, running Mandrakelinux release 10.1 (Cooker) for i586, 
kernel 2.6.3-7mdk
Registered Linux user #324360

Toddlers are the stormtroopers of the Lord of Entropy.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Carroll Grigsby
On Saturday 10 April 2004 05:41 pm, Josenildo Marques wrote:
 On Sat, 2004-04-10 at 16:16, JoeHill wrote:
  On Sat, 10 Apr 2004 12:35:31 -0500
 
  Tom Brinkman disseminated the following:
   I use it as my desktop background, slide show,
 
  ...and we all can guess what that slideshow is, you DOM!

 DOM:
 Unknown word

 What is that ? Forbidden language ? :-)


Josenildo:
DOM == Dirty Old Man. Synonyms include reprobate, lecher, pervert. In Brazil, 
they can be found strolling along the incredible beautiful beaches staring at 
the even more incredible female occupants. Or so I've heard.
-- cmg



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Marv Boyes
I like GQview, but I've been playing a bit lately with GThumb, as well. 
Very nicely done and well-polished-- but I favor GQview because its 
'Edit with the GIMP' option doesn't fire up another instance of the 
GIMP, as GThumb seems to insist on doing (though I'm sure, if I were 
more capable, I could figure out a way to get around that).

What I _really_ want to try, though, and have been trying to for months, 
is PixiePlus. I can't get it to run on my system, either compiled form 
source or installed from dedicated Mandrake 9.2 RPMs, because it insists 
on my having ImageMagick 5.5.4, while Mdk 9.2 came with v5.5.7. It's a 
bit off-topic: but can anyone suggest how I might get this thing to run? 
It seems to be exactly what I've been looking for in an image manager 
(i.e., something close to ACDSee, the only Windows app I really miss). 
Any guidance would be greatly appreciated. Thanks in advance.

Marv

--
Help in the research to find cures for devastating diseases like
Huntington's, Parkinson's, and Alzheimer's-- donate your computer's 
leisure time to [EMAIL PROTECTED] 
http://www.stanford.edu/group/pandegroup/folding/
--
The best way to accelerate a Windows box is at 9.8 meters per second per second.



Paul wrote:

On 04/10/2004 06:18 PM, Anne Wilson wrote:

am i the only one that uses gqview ... that comes part of the
mandrake install ??
No, I  use it as well, but then Kuickshow does the slide show, which 
is great for getting a good look at a collection of photos.  It's to 
be hoped they get it sorted, because I'm going to miss it.
 

GQview has a slideshow option also. And otherwise you can use qiv.
Run  qiv -itsfru dirname for a slideshow of all images in dirname 
and its subdirectories.  Remove the 'r' in the options to prevent 
images from showing randomly, and the 's' to prevent qiv from 
following the directory tree downwards.  :-)

Paul




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com

 





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Carl J. Bauman
[EMAIL PROTECTED] wrote:

am i the only one that uses gqview ... that comes part of the mandrake 
install ?? 

No, I use it also.  It a pretty good viewer.  Fairly intuitive UI with 
some nice configurable options.

Carl



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Stephen Kuhn
On Sun, 2004-04-11 at 06:23, Erylon Hines wrote:
 On Saturday 10 April 2004 12:28 pm, Stephen Kuhn wrote:
  On Sun, 2004-04-11 at 03:23, JoeHill wrote:
   On Sat, 10 Apr 2004 16:55:32 +0100
  
   LtCdData disseminated the following:
am i the only one that uses gqview ... that comes part of the mandrake
install ??
  
   Nope, I love it too!
 
  I'm surprised that y'all ain't using ImageMagick's display for quick
  viewing of images...sad sad sad...speed is everything here, mates...
 
  stephen kuhn - owner
 
 My choice also.  And, it is also a simple-to-use image manipulation program.
 
 e

FAST AS: and it ain't quite so GIMPy or KDE-ish or Guh-Nome-ish.

stephen kuhn - owner
==
illawarra computer services
a kuhn media australia company
http://kma.0catch.com
--
  * This message was composed on a 100% Microsoft free computer *
  We expressly refuse to utilise Microsoft DRM encoded documents
--
FORTUNE DISCUSSES THE DIFFERENCES BETWEEN MEN AND WOMEN: #6 Bathrooms: A
man has six items in his bathroom -- a toothbrush, toothpaste, shaving
cream, razor, a bar of Dial soap, and a towel from the Holiday Inn. The
average number of items in the typical woman's bathroom is 437. A man
would not be able to identify most of these items. Groceries: A woman
makes a list of things she needs and then goes to the store and buys
these things. A man waits 'til the only items left in his fridge are
half a lime and a Blue Ribbon. Then he goes grocery shopping. He buys
everything that looks good. By the time a man reaches the checkout
counter, his cart is packed tighter that the Clampett's car on Beverly
Hillbillies. Of course, this will not stop him from entering the
10-items-or-less lane.



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Image viewer

2004-04-10 Thread Stephen Kuhn
On Sun, 2004-04-11 at 10:16, Carroll Grigsby wrote:
 On Saturday 10 April 2004 05:41 pm, Josenildo Marques wrote:
  On Sat, 2004-04-10 at 16:16, JoeHill wrote:
   On Sat, 10 Apr 2004 12:35:31 -0500
  
   Tom Brinkman disseminated the following:
I use it as my desktop background, slide show,
  
   ...and we all can guess what that slideshow is, you DOM!
 
  DOM:
  Unknown word
 
  What is that ? Forbidden language ? :-)
 
 
 Josenildo:
 DOM == Dirty Old Man. Synonyms include reprobate, lecher, pervert. In Brazil, 
 they can be found strolling along the incredible beautiful beaches staring at 
 the even more incredible female occupants. Or so I've heard.
 -- cmg

SO YOU'VE HEARD...yeah, Carroll, starting to wonder if you're a
pr0n-ster...

stephen kuhn - owner
==
illawarra computer services
a kuhn media australia company
http://kma.0catch.com
--
  * This message was composed on a 100% Microsoft free computer *
  We expressly refuse to utilise Microsoft DRM encoded documents
--
Who wants to remember that escape-x-alt-control-left shift-b puts you
into super-edit-debug-compile mode? (Discussion in comp.os.linux.misc on
the intuitiveness of commands, especially Emacs.)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Image Viewer

2003-11-19 Thread Pawel Nozderko
I reply my quest: How to display image (.jpg) at the consolle

Help
-- 
Linux user: #333581



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [newbie] Image Viewer

2003-11-19 Thread Tony S. Sykes
Are you in X (gui)? Then you put the name of your program then the file
i.e. $ee file.jpg. If you are not in X (gui) you can't.

Tony.

-Original Message-
From: Pawel Nozderko [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 8:46 AM
To: [EMAIL PROTECTED]
Subject: [newbie] Image Viewer


I reply my quest: How to display image (.jpg) at the consolle

Help
-- 
Linux user: #333581
  

-+-+-+-+-+-+-+- Business Computer Projects - Disclaimer -+-+-+-+-+-+-+-

This message, and any associated attachment is confidential. If you have
received it in error, please delete it from your system, do not use or
disclose the information in any way, and notify either Tony S. Sykes
or the postmaster mailto:[EMAIL PROTECTED]  immediately.

The contents of this message may contain personal views which are not
necessarily the views of Business Computer Projects Ltd., unless
specifically stated.  

Whilst every effort has been made to ensure that emails and their
attachments are virus free, it is the responsibility of the recipient(s)
to verify the integrity of such emails.

 
Business Computer Projects Ltd
BCP House
151 Charles Street
Stockport
Cheshire
SK1 3JY
 
Tel: +44 (0)161 355-3000
Fax: +44 (0)161 355-3001
Web: http://www.bcpsoftware.com http://www.bcpsoftware.com/ 

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [newbie] Image Viewer

2003-11-19 Thread John Richard Smith

How to display image (.jpg) at the consolle

Help

For example :-

cd to directory   .jpg,   .pnm,files

kview snapshot182.png   (for a .png file)

kview AttorneyREN010.jpg  (for a .jpg file)

There are numerous viewers to choose from .
Take a look at kstartmenu-media-graphics for choice.
If you are not in Xwindows, type startx first.



John

--
John Richard Smith
[EMAIL PROTECTED] 



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[newbie] Image Viewer

2003-11-18 Thread Pawel Nozderko
Has anybody know how to display image (picture.jpg) under the console
and AsciiView isn't best option


-- 
Linux user: #333581



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com