Can someone tell me how can I upgrade my ubuntu server 10.04 to ubuntu server 10.10?
I try:
sudo apt-get install update-manager-core
sudo do-release-upgrade
Output:
Checking for a new ubuntu release
No new release found
sudo apt-get dist-upgrade
Output:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
The problem is you are in a LTS version and 10.10 is a normal version.
Here are the steps:
Be sure that you apply all updates to your current version of Ubuntu before you upgrade:
Now perform this procedure:
Try
sudo do-release-upgrade
alone. If you are going to merge commands in one line, it should be like this:Notice the two ampersands.
You broke the chaining of the two commands that were right (use
&&
or just split them over two lines)