LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-21-2019, 03:40 AM   #1
slac
Member
 
Registered: May 2019
Posts: 265

Rep: Reputation: Disabled
Question Is there any image viewer pre-installed with Slackware 14?


I know there are a lot of programs/tools that come in pre-installed with Slackware 14 and even more with Slackware 14+current.

I am currently using Slackware 14 (x64; Stable) and this version comes with pre-installed media programs such as mplayer, xine, etc.

So, I want to know if there is any simple image viewer pre-installed (?) I have been looking in the /usr/bin and everything I found is xv and gimp. xv apparently is an image manipulation tool. Gimp is just too big for simple image viewing and it is not practical to use to look around in a collection of images.

Now that I'm writing this thread, I remembered that there is a tool called ImageMagick, I don't know if it is possible to use it as image viewer (if somebody knows, tell me).

By the way, the question still remains, are there more image viewer-like programs pre-installed with Slackware 14?
 
Old 07-21-2019, 03:46 AM   #2
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
gwenview and geeqie
 
3 members found this post helpful.
Old 07-21-2019, 03:48 AM   #3
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,096

Rep: Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173
xv is an image viewer: from a terminal just try (in a directory with the appropriate file types)
Code:
xv *.jpg *.png
just press space to go to the next image or right-click on the image and the navigation menu will open.

there are also gwenview and geeqie.

P.S. Richard has been faster!

Last edited by ponce; 07-21-2019 at 03:50 AM.
 
2 members found this post helpful.
Old 07-21-2019, 04:18 AM   #4
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
small tip:
Code:
(cd /var/log/packages/ && grep -i viewer *|grep -i image)>images_viewers
There are some false positives but you get the idea.

or:
Code:
(cd /var/log/packages/;for i in *; do sed -n 6p $i|grep -i image|grep -i viewer;done)>images_viewers
There can be some false negatives

Last edited by Didier Spaier; 07-21-2019 at 04:29 AM.
 
2 members found this post helpful.
Old 07-21-2019, 05:28 AM   #5
fskmh
Member
 
Registered: Jun 2002
Location: South Africa
Distribution: Custom slackware64-current
Posts: 307

Rep: Reputation: 92
Quote:
Originally Posted by slac View Post
Now that I'm writing this thread, I remembered that there is a tool called ImageMagick, I don't know if it is possible to use it as image viewer (if somebody knows, tell me).

ImageMagick is a suite of tools for image display/manipulation. I use the "display" command quite frequently from the command-line.

Code:
grep bin /var/log/packages/imagemagick-*
usr/bin/
usr/bin/Magick++-config
usr/bin/Magick-config
usr/bin/MagickCore-config
usr/bin/MagickWand-config
usr/bin/Wand-config
usr/bin/animate
usr/bin/compare
usr/bin/composite
usr/bin/conjure
usr/bin/convert
usr/bin/display
usr/bin/identify
usr/bin/import
usr/bin/mogrify
usr/bin/montage
usr/bin/stream
 
2 members found this post helpful.
Old 07-21-2019, 07:02 PM   #6
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,367

Rep: Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748
A simple viewer that works for .png and .jpg files is /usr/bin/wmiv. It is in Slackware 14.2 and -current but not in Slackware 14.0. It has limitations, but is very fast to open.
 
5 members found this post helpful.
Old 07-21-2019, 07:28 PM   #7
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
open a file manager, find an image then right click on it, then look to see the options it gives you under 'open with' to open it with whatever file type that is associated with that file type.

using image magic to view an image.

https://imagemagick.org/script/display.php

Last edited by BW-userx; 07-21-2019 at 07:32 PM.
 
1 members found this post helpful.
Old 07-22-2019, 12:59 AM   #8
slac
Member
 
Registered: May 2019
Posts: 265

Original Poster
Rep: Reputation: Disabled
Thumbs up

Quote:
Originally Posted by Richard Cranium View Post
gwenview and geeqie
I knew gwenview from before (KDE5/Deb) but I don't have it installed in my Slackware since I didn't installed KDE4 and its dependencies.

Anyway, geenqie seems like the program I was looking for, thank you!
 
Old 07-22-2019, 01:03 AM   #9
slac
Member
 
Registered: May 2019
Posts: 265

Original Poster
Rep: Reputation: Disabled
Talking

Quote:
Originally Posted by Didier Spaier View Post
small tip:
Code:
(cd /var/log/packages/ && grep -i viewer *|grep -i image)>images_viewers
There are some false positives but you get the idea.

or:
Code:
(cd /var/log/packages/;for i in *; do sed -n 6p $i|grep -i image|grep -i viewer;done)>images_viewers
There can be some false negatives
Nice! It will help me a lot to find not only image viewers but other interesting programs that I may not know, thanks!
 
Old 07-22-2019, 01:25 AM   #10
slac
Member
 
Registered: May 2019
Posts: 265

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by fskmh View Post
ImageMagick is a suite of tools for image display/manipulation. I use the "display" command quite frequently from the command-line.

Code:
grep bin /var/log/packages/imagemagick-*
usr/bin/
usr/bin/Magick++-config
usr/bin/Magick-config
usr/bin/MagickCore-config
usr/bin/MagickWand-config
usr/bin/Wand-config
usr/bin/animate
usr/bin/compare
usr/bin/composite
usr/bin/conjure
usr/bin/convert
usr/bin/display
usr/bin/identify
usr/bin/import
usr/bin/mogrify
usr/bin/montage
usr/bin/stream
Quote:
Originally Posted by BW-userx View Post
open a file manager, find an image then right click on it, then look to see the options it gives you under 'open with' to open it with whatever file type that is associated with that file type.

using image magic to view an image.

https://imagemagick.org/script/display.php
Yeah, I knew there was someway to do it with ImageMagick! Thanks
 
Old 07-22-2019, 02:31 AM   #11
Geist
Member
 
Registered: Jul 2013
Distribution: Slackware 14 / current
Posts: 442

Rep: Reputation: 196Reputation: 196
I know you're asking for pre installed viewers but:

There is also simple x image viewer, and feh.
sxiv has some good gif functionality and I use it often.

For general album viewing I use geeqie (which does come with Slackware out of the box), it's a really good program, and the fact that it has 'remote commands' (as in, instead of spawning a new process, it controls a running one) is great, too.


Edit:
I'm suggesting sxiv and feh because they're extremely easy to compile, they don't have any fancy dependencies.

Last edited by Geist; 07-22-2019 at 02:41 AM.
 
2 members found this post helpful.
Old 07-22-2019, 03:13 AM   #12
slac
Member
 
Registered: May 2019
Posts: 265

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by allend View Post
A simple viewer that works for .png and .jpg files is /usr/bin/wmiv. It is in Slackware 14.2 and -current but not in Slackware 14.0. It has limitations, but is very fast to open.
That's indeed, a program I never heard of before. I'll give it a try, thank you!
 
1 members found this post helpful.
Old 07-22-2019, 03:17 AM   #13
slac
Member
 
Registered: May 2019
Posts: 265

Original Poster
Rep: Reputation: Disabled
Talking

Quote:
Originally Posted by Geist View Post
I know you're asking for pre installed viewers but:

There is also simple x image viewer, and feh.
sxiv has some good gif functionality and I use it often.

For general album viewing I use geeqie (which does come with Slackware out of the box), it's a really good program, and the fact that it has 'remote commands' (as in, instead of spawning a new process, it controls a running one) is great, too.


Edit:
I'm suggesting sxiv and feh because they're extremely easy to compile, they don't have any fancy dependencies.

Oh, yeah! I use feh for easily setting up a wallpaper and sxiv has a pretty handy/easy way of managing keybindings. Both of them are great and easy to compile/install.

By the way, it's great to know that you said about geeqie, that was the kind of program I was looking to find pre-installed with Slackware.
 
  


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
Is there any recommended command-line image viewer mawmanager Linux - Software 14 08-25-2018 04:58 AM
Are there any Arch ISOs that come pre-installed with all the necessary things that you need for your computer to work? Duwareon Arch 8 05-18-2017 01:14 AM
Is there any distro with pre-installed wine and some windows software like MSWord2010 Roben Linux - Distributions 11 06-21-2013 02:33 AM
[SOLVED] Best image viewer,djvu viewer pdf viewer cd/dvd writer for debian 7 rubankumars Debian 2 05-15-2013 08:23 AM
Best image viewer for very large image files? andvaranaut Linux - Software 1 02-21-2004 10:01 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:44 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