CentOS Bug Tracker
今天在centos5.2下安装GNOME的时候出现的错误:
找到了答案:
1. This is easy to work around
yum -y groupinstall "GNOME Desktop Environment" --exclude nautilus-sendto
Done.
Okay its a bug but we'll live through it.
2. gaim was replaced with pidgin within the distro, however there is an unmet require for libgaim.so.0 in nautilus-sendto.
This means that you "CAN NOT" install nautilus-sendto via yum.
If you get the error:
Error: Missing Dependency: libgaim.so.0 is needed by package nautilus-sendto
Then to correct this issue you will have to do a "nodeps" install nautilus-sendto before running that yum transaction.
The procedure would be to download the latest nautilus-sendto:
http://mirror.centos.org/centos/5/os/i386/CentOS/nautilus-sendto-0.7-5.fc6.i386.rpm [^]
Then install it via this command:
rpm -Uvh --nodeps nautilus-sendto-0.7-5.fc6.i386.rpm
This issue is an upstream issue and can be tracked at:
https://bugzilla.redhat.com/show_bug.cgi?id=250403 [^]
Just wanted to mention that these EXACT instructions only work on an i386 install.
To make it a little easer, one can do:
yum install yum-utils
yumdownloader nautilus-sendto
rpm -Uvh --nodeps nautilus-sendto[PRESS TAB]