LinuxQuestions.org
LinuxAnswers - the LQ Linux tutorial section.
Go Back   LinuxQuestions.org > Forums > Linux > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices

Reply
 
Thread Tools
Old 11-07-2009, 05:06 AM   #1
is-1-prime?
LQ Newbie
 
Registered: Nov 2009
Posts: 9
Thanked: 0
Please insert the disk labeled


[Log in to get rid of this advertisement]
I just installed Debian,
but when I want to install packages,

it says:

Please insert the disk labeled:
Debian GNU/Linux 5.0.3_Lenny_-Official amd64 DVD
Binary-1 20090905-11:36
in drive /cdrom/

I installed Debian from the iso on the internal drive. Can I reuse
the iso ? or at least I can tell the installer to quit looking from the
DVD but to get files from the internet ?

Thanks!
linux is-1-prime? is offline     Reply With Quote
Old 11-07-2009, 05:34 AM   #2
EricTRA
Member
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: Slackware 13, Ubuntu 9.04,Debian 32 + 64, AIX 5.3, RHEL5, LFS, BackTrack4
Posts: 978
Thanked: 112
Hello and Welcome to LinuxQuestions,

You can edit the sources.list file. That file is used by the package manager apt to connect to the repositories. Edit the file with your prefered editor, vi, nano, emacs, ...
Code:
nano /etc/apt/sources.list
and comment out the line where the cdrom is listed. Than add, if there not in there, the repositories needed and/or wanted.

The basic you need as minimal are:
Code:
deb http://ftp.uk.debian.org/debian/ lenny main contrib non-free
deb-src http://ftp.uk.debian.org/debian/ lenny main contrib non-free

deb http://security.debian.org/ lenny/updates main contrib non-free
deb-src http://security.debian.org/ lenny/updates main contrib non-free
You could change the uk for your country code.

Kind regards,

Eric
linux EricTRA is offline     Reply With Quote
Thanked by:
Old 11-07-2009, 05:39 AM   #3
is-1-prime?
LQ Newbie
 
Registered: Nov 2009
Posts: 9
Thanked: 0

Original Poster
Just the thing I was looking for. Thanks for the support!
linux is-1-prime? is offline     Reply With Quote
Old 11-07-2009, 05:40 AM   #4
EricTRA
Member
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: Slackware 13, Ubuntu 9.04,Debian 32 + 64, AIX 5.3, RHEL5, LFS, BackTrack4
Posts: 978
Thanked: 112
Hi,

No problem, hope it works out. Whatever problem you encounter, there's always someone at LQ that can help out

Kind regards,

Eric
linux EricTRA is offline     Reply With Quote
Old 11-07-2009, 10:56 AM   #5
is-1-prime?
LQ Newbie
 
Registered: Nov 2009
Posts: 9
Thanked: 0

Original Poster
A wierd thing:

Quote:
debian503-64-dell:/etc/apt# cat /etc/apt/sources.list
#
# deb cdrom:[Debian GNU/Linux 5.0.3 _Lenny_ - Official amd64 DVD Binary-1 20090905-11:36]/ lenny contrib main

#deb cdrom:[Debian GNU/Linux 5.0.3 _Lenny_ - Official amd64 DVD Binary-1 20090905-11:36]/ lenny contrib main

deb http://ftp.uk.debian.org/debian/ lenny main contrib non-free

deb-src http://ftp.uk.debian.org/debian/ lenny main contrib non-free

deb http://security.debian.org/ lenny/updates main contrib
# Line commented out by installer because it failed to verify:
deb-src http://security.debian.org/ lenny/updates main contrib

deb http://volatile.debian.org/debian-volatile lenny/volatile main contrib
deb http://http.us.debian.org/debian/ lenny main
deb-src http://volatile.debian.org/debian-volatile lenny/volatile main contrib
debian503-64-dell:/etc/apt# apt-get install make
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package make is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package make has no installation candidate
How to install make on Debian ?
linux is-1-prime? is offline     Reply With Quote
Old 11-07-2009, 11:05 AM   #6
EricTRA
Member
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: Slackware 13, Ubuntu 9.04,Debian 32 + 64, AIX 5.3, RHEL5, LFS, BackTrack4
Posts: 978
Thanked: 112
After changing the sources.list file, did you run
Code:
apt-get update
before trying the install? That command 'synchronises' with the repositories in the list, it reads what packages are available.

So before running an install or upgrade apt-get command when you changed the sources.list, you always have to run the update command.

Try
Code:
apt-get update
apt-get install make
Hope that works, if not we'll look where it goes wrong.

Kind regards,

Eric
linux EricTRA is offline     Reply With Quote
Old 11-07-2009, 11:09 AM   #7
is-1-prime?
LQ Newbie
 
Registered: Nov 2009
Posts: 9
Thanked: 0

Original Poster
EricTRA: You are quick.

Before I read your reply I seemed to have "solved" the problem by clicking on "Reload"
under "Synaptic Package Manager".

Just installed a test package "a2ps".

Cheers!
linux is-1-prime? is offline     Reply With Quote
Old 11-07-2009, 11:27 AM   #8
EricTRA
Member
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: Slackware 13, Ubuntu 9.04,Debian 32 + 64, AIX 5.3, RHEL5, LFS, BackTrack4
Posts: 978
Thanked: 112
Reload in Synaptic Package Manager is what 'update' does on command line .

Good for you that you figured it out.

Kind regards,

Eric
linux EricTRA is offline     Reply With Quote
Old 11-07-2009, 11:41 AM   #9
is-1-prime?
LQ Newbie
 
Registered: Nov 2009
Posts: 9
Thanked: 0

Original Poster
did a quick test on latex.

The eps figures in the xdvik window do not show figure at all. All I
could see is a red rectangular box. Changing the options in
xdvik window to Options "Show PS" or "Show PS and Bounding Boxes" didn't
change the situation : A red rectangular box for each eps file.

....
linux is-1-prime? is offline     Reply With Quote
Old 11-07-2009, 11:45 AM   #10
EricTRA
Member
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: Slackware 13, Ubuntu 9.04,Debian 32 + 64, AIX 5.3, RHEL5, LFS, BackTrack4
Posts: 978
Thanked: 112
Seems to me that you have something missing, but I don't have any experience with LaTeX. Did you install the package using the Synaptic Package Manager? And if so, did it install all the necessary dependencies? This seems like one of them is missing. I'm sure someone with knowledge of LaTeX will join in real soon.

Also, this last question is not a typical Debian question, so you might get better reply posting it in the Linux - Software forum.

Kind regards,

Eric
linux EricTRA is offline     Reply With Quote
Old 11-07-2009, 12:03 PM   #11
is-1-prime?
LQ Newbie
 
Registered: Nov 2009
Posts: 9
Thanked: 0

Original Poster
I installed latex through "apt-get install texlive-publishers" or synaptic equivalent, so I don't think I did anything special. Never mind, I just wanted to experiment with Debian and see how far I can go.
I have other distros that are fully functional. I read something about Debian in distrowatch.com and I just wanted to check out Debian in case I miss out some fun. But it seems I have to be patient to weed out certain "feautures" of Debian that have more to do with the particular packages than Debian itself. So far I am impressed by the time it takes to boot and get the gnome desktop. Thanks for all the help!

p/s: With just simple things like "make" installation and eps figures problem in latex, I am starting to imagine I have to fight with Java installation, youtube may have no sound, vmware installation failure, dah dah dah, dah dah dah, as I have fought with other distros. I will visit Debian again when I have time.
linux is-1-prime? is offline     Reply With Quote
Old 11-07-2009, 12:13 PM   #12
EricTRA
Member
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: Slackware 13, Ubuntu 9.04,Debian 32 + 64, AIX 5.3, RHEL5, LFS, BackTrack4
Posts: 978
Thanked: 112
You're welcome. Have fun with Linux.

Kind regards,

Eric
linux EricTRA is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Insert/remove USB disk leaves a permanent folder carbide Linux - General 3 03-25-2008 04:42 AM
WINE and Starcraft... Please insert disk? Tsumeone Linux - Games 24 01-31-2006 10:59 PM
Boot Disk Failure, Insert System Disk and Press Enter!! novkhan Linux - Hardware 1 12-15-2005 08:39 PM
Insert Boot-Disk and press any key computerlady911 Linux - Laptop and Netbook 7 10-04-2004 01:56 PM
Please insert Disk 4? kaega2 Mandriva 6 06-19-2004 02:13 AM


All times are GMT -5. The time now is 03:32 AM.

Main Menu
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration