Now you need to add ARTs repo...
You should have a directory as follows:
/etc/yum.repos.d/
Correct?
If so, you should see the following:
CentOS-Base.repo
CentOS-Media.repo
As far as I understand, you simply want to add one for ART. I did the following:
touch art.repo
vi art.repo (loads your basic text editor to edit art.repo, you should become very familiar with vi if you want to do any kind of server admin)
once vi loads, press "a" to enter "Insert" mode and you'll want to put in the info that Scott (mr. turtle himself) outlines in his page ...
I currently have
[atomic]
name=Atomic Rocket Turtle - $releasever - Atomic PSA-Compatible RPMS
baseurl=http://3es.atomicrocketturtle.com/atomic/art/$releaseverES/
[atomic-app-vault]
name=Atomic Rocket Turtle - $releasever - Atomic PSA App Vault RPMS
baseurl=http://3es.atomicrocketturtle.com/atomic/app-vault/
[psa-8.0]
name=Atomic Rocket Turtle - $releasever - SW-Soft PSA 8.0 RPMS
baseurl=http://3es.atomicrocketturtle.com/atomic/psa-8.0/$releaseverES/
Now things will be changing a bit with 8.1, but I have made any of those changes myself yet.
Once you've done this, do a "yum check-update" and you should either see something like this:
[root@server yum.repos.d]# yum check-update
Setting up repositories
psa-8.0 100% |=========================| 951 B 00:00
update 100% |=========================| 951 B 00:00
base 100% |=========================| 1.1 kB 00:00
atomic 100% |=========================| 951 B 00:00
addons 100% |=========================| 951 B 00:00
atomic-app-vault 100% |=========================| 951 B 00:00
extras 100% |=========================| 1.1 kB 00:00
Reading repository metadata in from local files
primary.xml.gz 100% |=========================| 51 kB 00:00
atomic : ################################################## 145/145
Added 0 new packages, deleted 2 old in 0.15 seconds
[root@server yum.repos.d]#
or a big list of packages on your server that it wants to update.
Now here is where you need to be careful. If you don't have any experience you don't want to simply put in "yum update" and let it update everything as there is a very good chance you'll cause some issues with your server. As you gain experience and understand how this works, you'll want to get yourself to the point where you are running "yum update" daily, or every couple of days making sure your system is up to date.
In any case - it would be a fantastic idea to pull out an old pc and install the same version of CentOS and Plesk you have on your production server and do some test setups first. Since I've done this I've learnt a tremendous amount.
Let me know if you get this far and we'll move on to installing dcc, razor and pyzor.
Luke