Strace rpm requirement for RHEL 5.9

I have requirement for

strace

utility

rpm package for RHEL 5.9

. I have made a google for last 1 hr. but did not find the required one. Can any one help me out to find out the compatible rpm package of strace for Redhat 5.9 version (I require 64 bit version).

http://vault.centos.org/5.9/os/x86\_64/CentOS/strace-4.5.18-18.el5.x86_64.rpm

Thank you. Please don't mind, is it for Centos and can it be installed in RHEL 5.9.

Centos packages might work but are unsupported/discouraged.
Do you have yum working?

yum search strace

I got the package from the RHEL 5.9 ISO. I have copied the strace package manually and install the same through

yum install strace

.
Can you give me some deference from where I can get information on how to debug through strace utility.

How can I redirect >> strace -t -p $PID to a file. I was using the following command but it did not work.

>>strace -t -p $PID 2>&1 /abcd/pqrst/output.txt

You duplicate stderr from the stdout file descriptor, but you don't redirect stdout.

Certainly you want

strace -t -p $PID 2>strace_output.txt