LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   finding/installing pine (https://www.linuxquestions.org/questions/linux-software-2/finding-installing-pine-68579/)

hrc 06-27-2003 10:39 PM

finding/installing pine
 
running RH9.0, I am trying to locate and install pine. when I do find / -name pine - it comes back with nothing. i looked at the RH website and can find what to do after it is installed(like, how to use it) - but nothing on the actual install of the program...any suggestions?
thanks a million!!!

contrasutra 06-27-2003 10:44 PM

Why not just download and compile it? Save yourself the (little bit) of trouble.

http://freshmeat.net/projects/pine/?topic_id=28

hrc 06-27-2003 10:45 PM

even better!!! excellent!

thank you for the rapid response!

hrc 06-27-2003 11:03 PM

can anyone help me thru the following error message from ./build lrh ?

In file included from /usr/include/openssl/ssl.h:179,
from osdep.c:218:
/usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory
In file included from /usr/include/openssl/ssl.h:179,
from osdep.c:218:
/usr/include/openssl/kssl.h:132: parse error before "krb5_enctype"
/usr/include/openssl/kssl.h:134: parse error before "FAR"
/usr/include/openssl/kssl.h:135: parse error before '}' token
/usr/include/openssl/kssl.h:147: parse error before "kssl_ctx_setstring"
/usr/include/openssl/kssl.h:147: parse error before '*' token
/usr/include/openssl/kssl.h:148: parse error before '*' token
/usr/include/openssl/kssl.h:149: parse error before '*' token
/usr/include/openssl/kssl.h:149: parse error before '*' token
/usr/include/openssl/kssl.h:150: parse error before '*' token
/usr/include/openssl/kssl.h:151: parse error before "kssl_ctx_setprinc"
/usr/include/openssl/kssl.h:151: parse error before '*' token
/usr/include/openssl/kssl.h:153: parse error before "kssl_cget_tkt"
/usr/include/openssl/kssl.h:153: parse error before '*' token
/usr/include/openssl/kssl.h:155: parse error before "kssl_sget_tkt"
/usr/include/openssl/kssl.h:155: parse error before '*' token
/usr/include/openssl/kssl.h:157: parse error before "kssl_ctx_setkey"
/usr/include/openssl/kssl.h:157: parse error before '*' token
/usr/include/openssl/kssl.h:159: parse error before "context"
/usr/include/openssl/kssl.h:160: parse error before "kssl_build_principal_2"
/usr/include/openssl/kssl.h:160: parse error before "context"
/usr/include/openssl/kssl.h:163: parse error before "kssl_validate_times"
/usr/include/openssl/kssl.h:163: parse error before "atime"
/usr/include/openssl/kssl.h:165: parse error before "kssl_check_authent"
/usr/include/openssl/kssl.h:165: parse error before '*' token
/usr/include/openssl/kssl.h:167: parse error before "enctype"
In file included from osdep.c:218:
/usr/include/openssl/ssl.h:909: parse error before "KSSL_CTX"
/usr/include/openssl/ssl.h:909: warning: no semicolon at end of struct or union
/usr/include/openssl/ssl.h:931: parse error before '}' token
make[3]: *** [osdep.o] Error 1
make[3]: Leaving directory `/crap/pine4.56/imap/c-client'
make[2]: *** [lnp] Error 2
make[2]: Leaving directory `/crap/pine4.56/imap/c-client'
make[1]: *** [OSTYPE] Error 2
make[1]: Leaving directory `/crap/pine4.56/imap'
make: *** [lrh] Error 2
+---------------------------------------------+
| Problems building c-client |
| |
| Please check the output above for a |
| possible explanation for this failure |
+---------------------------------------------+

contrasutra 06-28-2003 12:37 AM

do you have openssl installed?

Did you make sure you met all the dependancies? That should be the first step.

hrc 06-28-2003 06:55 AM

contrasutra - (scratching head) let me ask this....does RH9 come with openssl and does it autmatically complile upon install of RH9? To be honest, I have not done anything with openssl - researching now.

contrasutra 06-28-2003 01:18 PM

All of Redhat (as with most distros) comes precompiled.

Theres probobly a Redhat package. Im not very familiar with RH, so install it using the GUI "control center" they give you. If you cant, get APT, http://apt4rpm.sourceforge.net/ and install it that way.

Or you can search rpmfind.net , freshrpms.net , or your isntall CDs directly. Theres a lot of support for Redhat.

PS. What is "./build lrh" ? When did you have to type that in?

Thetargos 06-28-2003 01:27 PM

Just look for the RPM in the CDs, try to install it. If a dependency comes up, install that, and so on and os forth.

To use the rpm command:

Code:

# rpm -ivh <package name>
Remember to use <tab> autocompletion :)

What that command means.
rpm: basic package manager for Red Hat based systems
-i: install
-v: verbose (to actually print out what it is doing)
-h: forces it to do a status bar like progress bar.

Other options:
-U: upgrade/install packages
-F: upgrade installed-only packages, does not install any new package as -U does.
-e: ereases a package (uninstalls)
-q: queries the given package name in the rpm database
-ql: queries the files provided by a given rpm package.
-qa: queries all packages in the database.

For more info:

rpm --help
man rpm
rpm home page
rpmfind.net a good place to look for RPMs
Fresh RPMs Another good place to look for distribution-dependent RPMs.

Hope this helps you.

cropcircle 06-28-2003 01:56 PM

"pine-4.44-18.i386.rpm" is part of the Red Hat Linux 9 distribution.

You can find it on one of your Red Hat 9 installation CD's.
You can install it with "rpm -ivh pine-4.44-18.i386.rpm".

*/
Note : as of Red Hat Linux 9, Pine is deprecated and won't be packaged anymore in future versions of Red Hat Linux, due to license problems.
Luckely there's always the internet...
*/

As for the compilation error, you need the following package to solve this error : "krb5-devel-1.2.7-10.i386.rpm".

Good luck.

hrc 06-29-2003 06:20 AM

guys - it worked like charm - thanks a million!!!!

Thetargos 06-29-2003 11:56 AM

You are welcome! Glad it turned out the right way!


All times are GMT -5. The time now is 09:22 PM.