I wanted to run Beep-media-player eXperimental on my Ubuntu OS, but dapper is not supported so i decided to upgrade dapper drake to edgy eft. Here’s how to do it.
First of all, find out what Ubuntu version youre using:
sudo lsb_release -a
Then do as follows:
0. DO BACKUPS OF YOUR IMPORTANT FILES!
1. Edit sources:
sudo gedit /etc/apt/sources.list
by replacing dapper with edgy. Delete entry pointing to your CDROM, we will download everything from the Ubuntu servers.
2. Update:
sudo apt-get update
3. Upgrade:
sudo apt-get upgrade
sudo apt-get dist-upgrade
4. Finish:
(if any errors during upgrade sudo apt-get dist-upgrade --fix-missing)
sudo dpkg --configure -a
and/or
sudo apt-get -f install
5. Reboot.
Worked for me. I had some errors and warnings during upgrade but it’s because I have a lot of programs installed. Most for testing purposes.
———-
Chciałem uruchomić Beep-media-player eXperimental na swoim Ubuntu, ale BMPx nie działa na dapperze, więc zdecydowałe się uaktualnić dapper drake do edgy eft. Dalej napisałem jak to zrobić.
Po pierwsze, sprawdź jaką wersję Ubuntu masz:
sudo lsb_release -a
Następnie zrób co następuje:
0. ZRÓB BACKUPU WAŻNYCH PLIKÓW!
1. Wyedytuj źródła:
sudo gedit /etc/apt/sources.list
zamieniając dapper na edgy. Usuń źródła CDROM, pobierzemy wszystko z serwerów Ubuntu.
2. Aktualizujemy listy:
sudo apt-get update
3. Aktualizujemy system:
sudo apt-get upgrade
sudo apt-get dist-upgrade
4. Wykańczamy:
(jeśli wystąpiły błędy sudo apt-get dist-upgrade --fix-missing)
sudo dpkg --configure -a
i/lub
sudo apt-get -f install
5. Uruchamiamy ponownie komputer.
Zadziałało u mnie bez problemów. Miałem trochę błędów i ostrzeżeń, głównie przez nadmiar programów, które instalowałem do testów i nie ruszałem dłuższy czas.
A good source of documentation about upgrading from Dapper to Edgy can be found in the Ubuntu documentation site:
https://help.ubuntu.com/community/EdgyUpgrades
The recommendation there is actually to use the command update-manager instead of apt-get for major upgrade like this one. The update-manager does a lot of behind-the-scenes stuff to make sure the upgrade goes well, a lot more than a normal apt-get can do.
I don’t like behind the scene stuff. I want to know what’s happening. As a matter of fact I runned all commands with > file.txt and then grepped for warnings and errors. Also i have every action of apt-get utility logged in known place.