我尝试使用升级应用程序进行升级,但应用程序告诉我,我可以直接升级13.10。但是,如果我按下“升级”按钮,就会出现错误消息,就像.
所以,我试着用终端升级
sudo do-release-upgrade但是,也发生了相同的错误消息。我现在用12.10。我想升级到13.10,但我不能升级13.10和13.04。
我用Windows安装程序安装了ubuntu 12.04,并将其升级到12.10。
发布于 2013-12-19 15:22:52
首先检查安装了哪些版本的update-manager-core:
apt-cache policy update-manager-core结果可能和这个相似..。
update-manager-core:
Installed: 1:0.174.5
Candidate: 1:0.174.5
Version table:
*** 1:0.174.5 0
500 http://de.archive.ubuntu.com/ubuntu/ quantal-proposed/main amd64 Packages
100 /var/lib/dpkg/status
1:0.174.4 0
500 http://de.archive.ubuntu.com/ubuntu/ quantal-updates/main amd64 Packages
1:0.174.3 0
500 http://de.archive.ubuntu.com/ubuntu/ quantal/main amd64 Packages..。这意味着,您已经从quantal-proposed安装了该软件包。
通过从quantal-updates降级到包,您应该能够升级到raring:
apt-get install update-manager-core=1:0.174.4 python3-update-manager=1:0.174.4
do-release-upgrade发布于 2014-07-25 11:36:39
在本地下载元版本信息
mkdir ~/upgrade
cd ~/upgrade
wget http://changelogs.ubuntu.com/meta-release
# change the sources to the old-release archives:
sed s/archive.ubuntu.com/old-releases.ubuntu.com/ meta-release -i
sed -E '/\/(precise|trusty)/s/old-releases/archive/' meta-release -i
# grab the release notes from old-releases.ubuntu.com while the LTS releases precise and trusty still live on archive.ubuntu.com
# the code block, -E triggers extended, | means "OR"
#enable all releases:
sed 's/Supported: 0/Supported: 1/' meta-release -i
# backup the system meta-release file:
sudo cp -a /etc/update-manager/meta-release etc-update-manager-meta-release.bak
# change the system meta-release path lo the local one on port 80:
sudo sed s/changelogs.ubuntu.com/127.0.0.1/ /etc/update-manager/meta-release -i
# change the LTS info in the same file
sudo sed s/meta-release-lts/meta-release/ /etc/update-manager/meta-release -i
# start serving your own meta-release locally with
sudo python -m SimpleHTTPServer 80现在启动图形化更新通知程序或使用Ctrl+Shift+N打开一个新终端并执行发布升级。
sudo do-release-upgrade升级之后,您必须用以下方法还原系统文件/etc/update-manager/meta-release:
sudo cp -a etc-update-manager-meta-release.bak /etc/update-manager/meta-release 发布于 2014-07-28 19:21:41
我建议从Live或USB在这个分区上安装Ubuntu的新版本。它不会像预期的那样抹去一切。它留下了主文件夹-有应用程序设置和所有类似的东西,在我看来,这是最重要的-和一些应用程序毫发无损。我记得,我试着把它从13.04升级到14.04,效果很好。
在您始终可以用GParted完成1:1分区复制之前。以防万一。
https://askubuntu.com/questions/390587
复制相似问题