Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
03-02-2009, 10:31 AM
|
#1
|
Member
Registered: Nov 2008
Posts: 158
Rep:
|
how to install firefox, with out my setup cd
When I setup my debian server, I install things with a internet cd (bare minimum on the cd, and it downloaded the needed packages as it needed them). I want to install firefox, however, since I am not at my box, I can't setup my cd drive. So how do I install firefox, with out it looking to use stuff from the cd and get it directly from the web?
|
|
|
03-02-2009, 11:27 AM
|
#2
|
LQ Guru
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465
Rep:
|
Quote:
Originally Posted by SuperDude123
When I setup my debian server, I install things with a internet cd (bare minimum on the cd, and it downloaded the needed packages as it needed them). I want to install firefox, however, since I am not at my box, I can't setup my cd drive. So how do I install firefox, with out it looking to use stuff from the cd and get it directly from the web?
|
On Debian Firefox is called "Iceweasel". Just install the iceweasel packages and you're laughing.
Cheers,
jdk
|
|
|
03-02-2009, 04:56 PM
|
#3
|
Member
Registered: Nov 2008
Posts: 158
Original Poster
Rep:
|
ok, I still get the following
Media change: please insert the disc labeled
'Debian GNU/Linux 4.0 r7 _Etch_ - Official i386 NETINST Binary-1 20090210-11:46'
in the drive '/cdrom/' and press enter
How do I solve this?
|
|
|
03-02-2009, 05:01 PM
|
#4
|
Senior Member
Registered: Feb 2002
Location: harvard, il
Distribution: Ubuntu 11.4,DD-WRT micro plus ssh,lfs-6.6,Fedora 15,Fedora 16
Posts: 3,233
|
gonna have to edit the apt repositories to point to online directories instead of the cdrom
documentation can be found here
http://www.isotton.com/software/debi...ository-howto/
|
|
|
03-02-2009, 07:06 PM
|
#5
|
Member
Registered: Nov 2008
Posts: 158
Original Poster
Rep:
|
Maybe more specific or detail instructions could be given? I didn't see where in that link that it would solve my prob :S
|
|
|
03-02-2009, 07:44 PM
|
#6
|
Senior Member
Registered: Feb 2002
Location: harvard, il
Distribution: Ubuntu 11.4,DD-WRT micro plus ssh,lfs-6.6,Fedora 15,Fedora 16
Posts: 3,233
|
oops.. hehe
that was the link on how to be a debian repository.. guess i should *gasp* read the links i post... (shame on me, shame shame)
you need to edit /etc/apt/sources.lst
Code:
deb http://security.ubuntu.com/ubuntu hardy-security main restricted
deb-src http://security.ubuntu.com/ubuntu hardy-security main restricted
deb http://security.ubuntu.com/ubuntu hardy-security universe
deb-src http://security.ubuntu.com/ubuntu hardy-security universe
deb http://security.ubuntu.com/ubuntu hardy-security multiverse
deb-src http://security.ubuntu.com/ubuntu hardy-security multiverse
something like that except with debian instead of ubuntu
edit: p.s. once you figure out how to add the main debian repositorys, there are other repositories out there that can automate installation of other third party software, anhyew, good luck..
Last edited by frieza; 03-02-2009 at 07:48 PM.
|
|
|
03-04-2009, 11:14 AM
|
#7
|
Member
Registered: Nov 2008
Posts: 158
Original Poster
Rep:
|
Here's what I got:
#
# deb cdrom:[Debian GNU/Linux 4.0 r7 _Etch_ - Official i386 NETINST Binary-1 20090210-11:46]/ etch contrib main
deb cdrom:[Debian GNU/Linux 4.0 r7 _Etch_ - Official i386 NETINST Binary-1 20090210-11:46]/ etch contrib main
deb http://mirror.peer1.net/debian/ etch main
deb-src http://mirror.peer1.net/debian/ etch main
deb http://security.debian.org/ etch/updates main contrib
deb-src http://security.debian.org/ etch/updates main contrib
Should I just put a # in front of the deb cdrom line? If I should replace it with some thing, what should I replace it with?
|
|
|
03-04-2009, 09:15 PM
|
#8
|
Member
Registered: Mar 2009
Posts: 102
Rep:
|
I don't know how much you want to stick to core Debian concepts and IceWeasel as the replacement for Firefox, so this is just a hypthetical idea: why not downloading the Firefox tarball from the Mozilla site and simply installing it jut as it is?
The Debian team had their reasons for avoiding the non-free Firefox artwork, but that doesn't mean that you don't have the choice to install it anyway. There are no significant other differences between IceWeasel and Firefox, AFAIK.
Arch Linux
Last edited by T74marcell; 03-14-2009 at 12:49 AM.
|
|
|
03-04-2009, 09:35 PM
|
#9
|
Member
Registered: Nov 2008
Posts: 158
Original Poster
Rep:
|
its ok, I have now IceWeasel installed, but I can't forward X through ssh. How do I do that?
|
|
|
03-04-2009, 11:35 PM
|
#10
|
LQ Guru
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465
Rep:
|
Quote:
Originally Posted by SuperDude123
Should I just put a # in front of the deb cdrom line? If I should replace it with some thing, what should I replace it with?
|
Or even remove that line altogether. Putting a # in front of a line indicates that the line is a comment and not to be executed by any routine.
cheers,
jdk
|
|
|
All times are GMT -5. The time now is 07:48 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|