<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Max Bern wrote:
<blockquote cite="mid:252593.27887.qm@web45806.mail.sp1.yahoo.com"
 type="cite">
  <style type="text/css"><!-- DIV {margin:0px;} --></style>
  <div style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">
  <div>I think the reason why the 'make' commands do not work to
install 3.8.8 is that CentOS doesn't use that command. The big problem
here is that we are trying to install RT on a remote CentOS box with
only the terminal to work with. We have been trying to install RT on
this box for the entire week, have gotten nothing but problems, and now
we are hopelessly confused. If someone could point me to an install
tutorial for CentOS5 and RT 3.8.8 it would make my week.<br>
  </div>
  </div>
</blockquote>
As Thomas already told you need to get started by downloading the
source tar.gz from bestpractical.com<br>
Then you'll need to make sure that you have a working compiler (gcc) +
assorted utilities to compile all needed modules (make and friends). A
normal Centos install should these have installed but you can check
with: yum info gcc make binutils<br>
The output is info per package and the line with Repo in it should read
'Installed' and maybe there is also a Repo: base then that means there
is a update available in the repository 'base'.<br>
<br>
Then read the README again and start.<br>
cd into the unpacked source directory<br>
Make sure you add the correct parameters to you're configure command,
do: ./configure --help to see all possibilities<br>
fix any problems spotted by configure if needed.<br>
make testdeps<br>
( this will spit out a whole set of missing perl modules)<br>
fix this with: make fixdeps<br>
This will pull in all needed CPAN modules BUT beware that for some perl
modules you'll need to have the underlying developer headers and
libraries so install those with yum install abc-devel if needed. One
example is GD.<br>
If all goes well you'll end up with all modules installed.<br>
Edit /opt/rt3/etc/RT_SiteConfig.pm to your needs<br>
Edit httpd.conf to your needs<br>
start httpd, login to RT<br>
<br>
Thats about how I do it myself (using Centos5 and RT and Oracle)<br>
<br>
Regards,<br>
<br>
Joop<br>
<br>
<br>
</body>
</html>