Para quem teve a infeliz ideia de fazer upgrade, aqui fica um ajuda que só encontrei na cache do google.

“Upgrading Mandrake Linux 10.0 to Mandriva LE2005 10.2 Submitted by Khalid on Sun, 2005/06/05 - 15:56. Linux
In February 2005, Mandrake Soft of France and Conectiva of Brazil, announced that they merged. Shortly afterwards, in April 2005, they announced that they are changing their name to Mandriva. Then they released Mandriva Limited Edition 2005 (LE2005) which is what Mandrake 10.2 should have been.
Since I have several machines at home, all running Mandrake, it was time to start the annual upgrade to stay current.
The upgrade went fine without much surprises, except for those listed below with solutions. All the existing devices seem to work well, even the sound cards that were manually configured in 10.0.
After upgrading two machine, here are the caveats to watch for:
Xorg X11 packages unreadable
On upgrading the second machine using the same CD set, the packages xorg-x11-server and xorg-x11 were not readable for some reason. Without those, X11 would not run, and therefore neither KDE (or Gnome if you are using that), and therefore, no GUI application would run. The solution was for me to download them using FTP from the command line and using the rpm -e command, removed XFree86-Server package, then using rpm -ivh installed the above two packages.
Permissions wrong on /dev/null
The permissions on /dev/null are not correct. it is 660 (rw-rw—-). This caused many programs to not work, or to be very slow, hogging the CPU. An example is xrdb when KDE is starting up. I found out that it is trying to wite to /dev/null and failing by running strace on the process. It should be changed to 666 (rw-rw-rw-). This can be done using the command chmod 666 /dev/null from a root terminal.
devfs vs. udev
There is a conflict between devfs and the new udev subsystem for managing removable media. This caused booting to be either very slow, or freeze up completely. Since LE2005 uses udev, you have to disable devfs. The easiest way of doing so is to boot into failsafe mode (from the boot menu) and depending on whether you are using grub or lilo edit its file as needed:
- If you are using grub, then edit /boot/grub/menu.lst and change all devfs=mount to be devfs=nomount. If you cannot boot far enough for some reason, then you can use grub’s commands to edit the command line used for booting, so you can continue to boot, then edit the above mentioned file to make this permanent.
- If you are using lilo, then edit /etc/lilo.conf and change all occurances of devfs=mount to be devfs=nomount. You have to run the lilo command for this”