Ubuntu 15.04 apt-get 更新时遇到错误

Ubuntu 15.04 apt-get 更新时遇到错误

最近,我将 Ubuntu 软件版本从 14.10 更新到了 15.04,但由于一些技术错误,升级未能正常完成,每当我尝试进行更新时,都会出现如下错误

Failed to fetch cdrom://Ubuntu 14.10 _Utopic Unicorn_ - Release amd64
  (20141022.1)/dists/utopic/main/binary-amd64/Packages  Please use
  apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot
  be used to add new CD-ROMs

  W: Failed to fetch cdrom://Ubuntu 14.10 _Utopic Unicorn_ - Release
  amd64 (20141022.1)/dists/utopic/restricted/binary-amd64/Packages 
  Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get
  update cannot be used to add new CD-ROMs

这些是显示的错误,在这个错误中我注意到错误被提及为 Ubuntu 14.10。但我的已升级到 15.04,我最近检查过

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 15.04
Release:    15.04
Codename:   vivid

所以请帮我解决这个问题

答案1

编辑你的/etc/apt/sources.list。你(可能)会发现类似如下的行

deb cdrom:[Ubuntu 14.10 _Utopic Unicorn_ - Release amd64 (20141022.1)]/ utopic main restricted

#在那里。在每一行的开头添加一个:

# deb cdrom:[Ubuntu 14.10 _Utopic Unicorn_ - Release amd64 (20141022.1)]/ utopic main restricted

或者把这些行全部删除。

另外,确保utopic其中不再有其他引用。如果有,请将其全部更改为vivid

$ sudo apt-get update

然后就可以工作了。

相关内容