“media change: please insert the disc labeled” when trying to install Ruby on Rails [duplicate]

This question already has an answer here:

  • How can I avoid “please insert CD/DVD” error when updating Ubuntu? 2 answers

When I type sudo apt-get install rails I get the message:

media change: please insert the disc labeled
'Ubuntu 12.04.3 LTS _Precise Pangolin_ - Release amd64 (20130820.1)
in the drive '/media/cdrom/' and press enter

I am new to Linux and I have the installation CD in the drive, but I have no idea what disc it is asking for and I'm not sure what /media/cdrom/ means. All I have is the installation CD and it is in the only optical drive I have.

share improve this question

marked as duplicate by Anwar, Eric Carvalho, Braiam, belacqua, Richard May 11 '14 at 0:51

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

 

1 Answer

active oldest votes
up vote 26 down vote

Just remove the cdrom entry from the sources.list file. This can be done easily:

sudo sed -i '/cdrom/d' /etc/apt/sources.list

This should take care of the problem. The message is because somehow you still have the cdrom entry in your sources.list file, you can check the content of the file using:

grep -v '#' /etc/apt/sources.list

This will show you all the repositories you have activated.

share improve this answer
 
 
Which commands enable the DVD/CD on the installation USB stick, if one decides to continue using the packages on the downloaded ISO? –  user75798 Mar 25 '14 at 5:41
 
@user75798 you know that all the packages provided in the ISO are already installed, right? –  Braiam Mar 25 '14 at 6:06
 
A more cautious approach would be to edit the sources.list vi /etc/apt/sources.list and add a # in the lines to be removed. –  Underverse May 14 at 13:05

你可能感兴趣的:(ubuntu,学习资料)