diff --git a/sources/tech/20150227 How To Fix--Failed to fetch cdrom apt-get update cannot be used to add new CD-ROMs.md b/translated/tech/20150227 How To Fix--Failed to fetch cdrom apt-get update cannot be used to add new CD-ROMs.md similarity index 53% rename from sources/tech/20150227 How To Fix--Failed to fetch cdrom apt-get update cannot be used to add new CD-ROMs.md rename to translated/tech/20150227 How To Fix--Failed to fetch cdrom apt-get update cannot be used to add new CD-ROMs.md index c8621c895a..77c4c05d63 100644 --- a/sources/tech/20150227 How To Fix--Failed to fetch cdrom apt-get update cannot be used to add new CD-ROMs.md +++ b/translated/tech/20150227 How To Fix--Failed to fetch cdrom apt-get update cannot be used to add new CD-ROMs.md @@ -1,10 +1,8 @@ -Translating----geekpi - -How To Fix: Failed to fetch cdrom apt-get update cannot be used to add new CD-ROMs +如何修复:apt-get update无法添加新的CD-ROM ================================================================================ ![](http://itsfoss.itsfoss.netdna-cdn.com/wp-content/uploads/2014/12/elementary_OS_Freya.jpg) -These days I am experimenting with Elementary OS Freya and during this, I encountered a very common updater error: **Failed to fetch cdrom Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs**. The complete error looked like this after running the apt-get update command: +这些天我正在体验Elementary OS Freya,在这期间,我遇到了一个非常常见的更新错误:**Failed to fetch cdrom Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs**。完整的错误在运行apt-get update后看上去像这样: > W: Failed to fetch cdrom://elementary OS 0.3 _Freya_ – Daily amd64 (20150208)/dists/trusty/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 > @@ -12,33 +10,33 @@ These days I am experimenting with Elementary OS Freya and during this, I encoun > > E: Some index files failed to download. They have been ignored, or old ones used instead. -In this post, we shall see how to fix this error. +本篇中,我们会了解如何修复这个错误。 -### Fix Failed to fetch cdrom apt-get update cannot be used to add new CD-ROMs error ### +### 修复apt-get update无法添加新的CD-ROM的错误 ### -The reason for this error is that cdrom has been included as one of the the sources here. And to fix this issue, we need to remove this from the list of software sources. +这个错误的原因是cdrom已经被包含在源之中。要修复这个问题,我们需要将它从软件源中移除。 -In Ubuntu, look for Software & Updates: +在Ubuntu中,找到“软件与更新”: ![](http://itsfoss.itsfoss.netdna-cdn.com/wp-content/uploads/2014/08/Software_Update_Ubuntu.jpeg) -In the first tab Ubuntu Software, look for the cdrom, if it’s checked, uncheck it. +在Ubuntu Software的第一个标签中,找到cdrom,如果它是勾选的,那么取消勾选。 ![](http://itsfoss.itsfoss.netdna-cdn.com/wp-content/uploads/2015/02/CDROM_Error_Update_Software_Sources.jpeg) -Close the Software Sources and run the update again. It should work fine now. +关闭软件源并再次运行更新。现在应该可以用了。 -### Further troubleshoot: ### +### 进一步故障排除: ### -The method described above should have fixed this **apt-get update cannot be used to add new CD-ROMs** error. But this was not the case for me because the option of cdrom was already grayed out as I was using live session. +上面描述的方法已经修复了这个**apt-get update cannot be used to add new CD-ROMs**错误。但是这个方法对我无效,因为cdrom的选项这时是灰色的,因为我使用的live版本。 ![](http://itsfoss.itsfoss.netdna-cdn.com/wp-content/uploads/2015/02/CDROM_Update_Error.png) -Now to fix our error, we shall take the command line route. Open a terminal and use the following line to see what is included in sources list: +现在要修复我们的问题了,我们是要采用命令行路线。打开终端并查看软件源中包含了哪些源: cat /etc/apt/sources.list -The output for me was as following: +我的输出是下面这样: deb cdrom:[elementary OS 0.3 _Freya_ – Daily amd64 (20150208)]/ trusty main restricted deb http://archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse @@ -48,17 +46,17 @@ The output for me was as following: deb http://archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse deb-src http://archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse -Look at the first line in the above list. It includes cdrom. We need to comment out this line by adding # in front of it to make it look like this: +在上面的第一行中。它包含了cdrom。我们需要用‘#’来注释掉这行: #deb cdrom:[elementary OS 0.3 _Freya_ – Daily amd64 (20150208)]/ trusty main restricted -To do that use the command below: +要用下面的命令来: sudo gedit /etc/apt/sources.list -Once you have edited the sources.list, run the apt-get update once again. The error apt-get update cannot be used to add new CD-ROMs should have been fixed. If you are facing any other update issue, do look at this article which is a collection of most [common Ubuntu update error fixes][1]. +在你编辑完软件源后,再次运行apt-get update。“apt-get update cannot be used to add new CD-ROMs”这个错误应该已经修复了。如果你还遇到其他的问题,看一下这篇收集了大部分[Ubuntu常见更新错误修复][1]的文章。 -I hope you found this tutorial helpful. If you have any questions or suggestions, feel free to drop a comment. +我希望这篇教程对你有用。如果你还有其他的问题和建议,请在下面留言。 -------------------------------------------------------------------------------- @@ -71,4 +69,4 @@ via: http://itsfoss.com/fix-failed-fetch-cdrom-aptget-update-add-cdroms/ 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出 [a]:http://itsfoss.com/author/abhishek/ -[1]:http://itsfoss.com/fix-update-errors-ubuntu-1404/ \ No newline at end of file +[1]:http://itsfoss.com/fix-update-errors-ubuntu-1404/