QUOTE (bonebags @ Oct 18 2006, 12:37 AM)

but when i try to install the packages ( i downloaded the new updates via transgaming
CODE
[root@localhost sims]# rpm -ivh /home/john/sims/The_Sims-3.2-1.i386.rpm
so you are not installing from the CD?
QUOTE (bonebags @ Oct 18 2006, 12:37 AM)

CODE
[root@localhost sims]# rpm -ivh /home/john/sims/The_Sims-3.2-1.i386.rpm
error: Failed dependencies:
WineX_Sims >= 3.2 is needed by The_Sims-3.2-1.i386
[root@localhost sims]#
[root@localhost sims]# rpm -ivh /home/john/sims/WineX_Sims-3.2-2.i386.rpm
error: Failed dependencies:
The_Sims >= 3.2 is needed by WineX_Sims-3.2-2.i386
[root@localhost sims]#
looks like dependency hell (aka circular dependency) to me (rpm a requires rpm b but b requires a). you can fix that with either of the following:
CODE
[root@localhost sims]# rpm -Uvh The_Sims-3.2-1.i386.rpm WineX_Sims-3.2-2.i386.rpm
or (if those two are the only RPM packages on the directory)
CODE
[root@localhost sims]# rpm -Uvh *Sims*.rpm
i recommend using the -U switch since it will either update older versions of the package, or install them if this is the first time the package is being installed.
ciao!