LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   apache compile on RH9 - imap.tar.Z help (https://www.linuxquestions.org/questions/linux-software-2/apache-compile-on-rh9-imap-tar-z-help-58379/)

llee 05-06-2003 10:06 AM

apache compile on RH9 - imap.tar.Z help
 
Hi, I am continuing my install of the Apache Compile and am stuck here:

# cd imap-2002c1/
[root@mail05 imap-2002c1]# make slx SSLTYPE=nopwd
make sslnopwd
make[1]: Entering directory `/usr/local/imap-2002c1'
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Building in full compliance with IESG security requirements:
++ TLS/SSL encryption is supported
++ Unencrypted plaintext passwords are prohibited
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
make[1]: Leaving directory `/usr/local/imap-2002c1'
Applying an process to sources...
tools/an "ln -s" src/c-client c-client
: bad interpreter: No such file or directory
make: *** [an] Error 126

Did I downloaded the wrong file because RH9 can't run this command: tar −xvfz imap.tar.Z
So I uncompressed it under a windows program and moved it over to my linux box.

Any suggestions? Thank you very much!

david_ross 05-06-2003 12:57 PM

This isn't a vaild command that's why it doesn't work:
tar −xvfz imap.tar.Z

the -f tells tar to use the next string as the file name so it will need to be:
tar −xvzf imap.tar.Z

or:
tar −x -v -z -f imap.tar.Z

etc etc...

llee 05-06-2003 01:06 PM

David ---> Bingo!

Uncompressing your way works. It then allows me to properly run "make slx SSLTYPE=nopwd". Thanks again.


All times are GMT -5. The time now is 08:44 PM.