Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Installed packages - Where are the binaries?

Status
Not open for further replies.

josel

Programmer
Oct 16, 2001
716
US
SuSE 9.1 Professional

Trying to find a way to create PDF documents I installed

ImageMagick Viewer and coverter for images
ImageMagick-Magic++ C++ Interface for ImageMagick
ImageMagick-devel Include files and libraries mandatory for development
fltk Free C++ GUI toolkit for the X window system, OpenGL, and WIN32 (windows 95, 98, NT)
html2ps HTML To PostScript Converter
libEMF Library with manipulation with enhanced metafile (EMF, ECMA-234)
netpbm A powerfull graphics conversion package
perl-HTML-Parser Perl HTML Interface
perl-HTML-Tagset Data Tables Useful for dealing with HTML
perl-Tk Perl TK
perl-URI Perl interface for URI objects
perl-lib Modules Providing a World Wide Web API
te_etex The extended TeX/LaTeX from the NTS project
te_latex All about LaTeX
te_pdf A Version of TeX/LaTeX which Creates PDF files
tetex The base system of teTeX

Now, where in the world are the binaries?
What are they called (commands)?
Where do I go to learn more about them?

Thank you all in advance!


Jose Lerebours


KNOWLEDGE: Something you can give away endlessly and gain more of it in the process! - Jose Lerebours
 
G'day,

I have not used SUSE but I might recommend looking in /usr/bin or /usr/local/bin for binaries looking like te_pdf etc.

Are these package names above in your list? If so perhaps you can use SUSE programs to show the contents of them which should give you the paths to the binaries.

Hope this helps, Dave.
 
You can use the locate command.
If you installed using rpm you can query it so check where the files are installed.
Looking at your apropos output, most of them are add-on modules for other packages like Perl.
btw, you can use the ReportLab module to create pdf's in Python or if you're not programming it, you can use OpenOffice.


"If you always do what you've always done, you will always be where you've always been."
 
ImageMagick is a set of multiple binaries.

If you call
Code:
man ImageMagick
, you'll find related programs close to the end of the page in the section 'See also'.
To find out, where they're installed, use whereis:
Code:
whereis convert
for example.

seeking a job as java-programmer in Berlin:
 
Running `find` and dumping to /tmp/junk and `vi` /tmp/junk file, I was able to patiently peruse through the file and found a bunch of them within the /usr/bin directory.

I searched for "pdf". Thank you all for respoinding!


Jose Lerebours


KNOWLEDGE: Something you can give away endlessly and gain more of it in the process! - Jose Lerebours
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top