I can't find the commands anywhere. Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Just in case you don't have the software in your existing repositories, a great source is the "Remi" repository

To import the repository

su -
cd /etc/yum.repos.d
wget http://rpms.famillecollet.com/enterprise/remi.repo

The repository is disabled by default so when you want to use install something you will need to type the following (for example)

yum --enablerepo=remi install mysql

You will also need the EPEL repository on which this one depends (just use the same syntax to get it) full documentaton on EPEL is here: http://fedoraproject.org/wiki/EPEL

If you need to import the key (normally not necessary when you use yum, but I've known keys not to download)

rpm --import RPM-GPG-KEY-remi

I hope this is useful.

link|improve this answer
feedback
`yum update php`

Your repositories will have to have 5.2.11, though.

link|improve this answer
that is what I am missing... do you know where to get that repository? – Adam Coburn Jun 5 '11 at 17:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.