Last night I just got finish upgrading my Fedora box from Fedora 8 to Fedora 9. It took me about 1 hour the whole process of downloading the packages and installing them. I did it though the terminal because I don’t have a DVD ROM on that machine and I though that was the best way. I mean I could just format the whole drive but I would need to setup my configurations again and I didn’t wanted to do that. So this tutorial will illustrate how to upgrade your Fedora box from 8 to 9 using the terminal.
Steps:
- Go to the “
Terminal
“ - Type “
su
” to become a super user - Now do a “
yum update
” to install all the packages needed - Now do a “
yum clean all
” to clean all packages no needed - Now do steps 3 and 4 again. Just to make sure that we have the latest packages
- Run the following command on your box “
rpm -Uhv http://mirror.liberty.edu/pub/fedora/linux/releases/9/Fedora/i386/os/Packages/fedora-release-9-2.noarch.rpm http://mirror.liberty.edu/pub/fedora/linux/releases/9/Fedora/i386/os/Packages/fedora-release-notes-9.0.0-1.noarch.rpm
“ - Next do a “
yum clean all
“ - Now do “
yum -y update
“. This will actually install all the packages needed in order to have your box upgraded from Fedora 8 to Fedora 9.
I had some problems with with my XAMPP when it was going to load.
root@localhost]# /opt/lampp/lampp start
cat: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
/bin/sh: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
Starting XAMPP for Linux ...
/bin/bash: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
/bin/bash: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
/bin/bash: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
/bin/bash: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
/bin/bash: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
XAMPP for Linux started.
I resolved this error by doing this…
- Go to your XAMPP root folder
- Type “
cp lampp bk-lampp
“ - Type “
cat lampp.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > lampp
“ - Type “
./lampp start
“ - Then if you get the following error
“./lampp: line 94: syntax error near unexpected token `fi'
”
“./lampp: line 94: `fi'
“ - Type “
gedit lampp
“ - Before line 93 insert “
echo "XAMPP is working"
“ - Now run “
./lampp start
“
That should take care of that problem and everything should work perfectly.