LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 08-07-2012, 12:51 AM   #76
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176

Widget:
Yes I used the expert istall. I did not set up DHCP during install because my system is wireless and not sure if the subnet mask is 1.1 or 1.3 at the end. My computer see's the wusb54gc Linksys adapter to talk to the modem down the hall.
 
Old 08-07-2012, 01:33 AM   #77
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
I'm in the text Editor now
#_
deb cdrom {Debian GNC/Linux 6.0.5 squeeze Official AMD 64 Nentist Binary 1
( this second line is a repeat of the first.

deb http://security.debian.org/squeeze/updatemain

deb-src http: security.debian.org/squeeze/updatemain

This is what I see on my flat screen. Somewhat unsure at this point-
The cursor is flashing. Is this where I type in man nano?
 
Old 08-07-2012, 02:26 AM   #78
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
I typed man nano at the prompt and nothing happened.
Is this where I should use the arrow down key and select the first http:// in this text editor?
 
Old 08-07-2012, 03:51 AM   #79
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Very upsetting; I don't understand how to edit that file.
I'm still in the main menu of the text editor
 
Old 08-07-2012, 07:55 AM   #80
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Do not enter commands from within nano itself.

nano is very easy to use just do as follows:

Code:
# nano /etc/apt/sources.list
(as root - that's what the # means)

This will open the file for editing in nano - edit as follows (comment out or get rid of the cdrom lines):

Code:
deb http://ftp.us.debian.org/debian/ squeeze main
#deb-src http://ftp.us.debian.org/debian/ squeeze main

deb http://security.debian.org/ squeeze/updates main
#deb-src http://security.debian.org/ squeeze/updates main

# squeeze-updates, previously known as 'volatile'
deb http://ftp.us.debian.org/debian/ squeeze-updates main
#deb-src http://ftp.us.debian.org/debian/ squeeze-updates main
(in this case it's a configuration file or code and the # means that the line is disabled)

When you've added the above, hit CTRL+O followed by CTRL+X (save and exit).

Next do:
Code:
# aptitude update
If you want to read the man page, from the terminal (as a normal user)

Code:
$ man nano

Last edited by cynwulf; 08-07-2012 at 07:58 AM.
 
Old 08-07-2012, 11:13 AM   #81
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Most likely you will have to add "contrib non-free" to sources.list.
And because you have no internet connection you will have to add another cd.
You have to go thru the list of cd's to find out which has your wireless drivers.
 
Old 08-07-2012, 12:04 PM   #82
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
I assumed that a wired connection would work as most folks use it to install. If you can connect with a wire I would try it and see if it picks up the connection.

If not you will need some other disks but I am not sure which ones you are going to need for the "non-free" repository.

You do need to edit that file. When I posted that I did give the same command as caravel. This brings up the file in nano for editing. You have to do this as root because this is not a user editable file for very sensible reasons. There are times when it does need edited and that is done by root (administrator in MS speak).
 
Old 08-07-2012, 03:17 PM   #83
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Caravel:

I want to be certain that I understand your instruction's.
Like I said; I am in the main menu of this editor and the prompt is the flashing cursor-
At this cursor (literally) Is this where I start typing in the first Code:you gave me?

Code:
#nano /etc/apt/sources.list
... And than continue to proceed the rest of the text code you provided.
I wrote your entire message so I know what steps and their order.
 
Old 08-07-2012, 03:30 PM   #84
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by widget View Post
I assumed that a wired connection would work as most folks use it to install. If you can connect with a wire I would try it and see if it picks up the connection.

If not you will need some other disks but I am not sure which ones you are going to need for the "non-free" repository.

You do need to edit that file. When I posted that I did give the same command as caravel. This brings up the file in nano for editing. You have to do this as root because this is not a user editable file for very sensible reasons. There are times when it does need edited and that is done by root (administrator in MS speak).
I can't connect with a wire. The system is too far away from the modem. I only have the one cd/dvd from the ISO I burned.
After I follow the rest of your instructions (after the work that needs to be done while in this editor) and finish following Caravel's step by step instructions:
Should the Debian OS be up and running?
 
Old 08-07-2012, 03:53 PM   #85
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by EDDY1 View Post
Most likely you will have to add "contrib non-free" to sources.list.
And because you have no internet connection you will have to add another cd.
You have to go thru the list of cd's to find out which has your wireless drivers.
I found the rt73 driver to communicate with the Linksys wusb54gc adapter.

If I can get the Debian OS up and running I should be able to install the driver.
W/o another cd this will be difficult. Is this list of cd's on the install disc?
Or is it on the Debian website?
 
Old 08-07-2012, 04:44 PM   #86
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
I now have a message ( wrote 9 lines )
And the prompt: root@localhost/home/ztcoracat#
 
Old 08-07-2012, 05:06 PM   #87
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by Ztcoracat View Post
I now have a message ( wrote 9 lines )
And the prompt: root@localhost/home/ztcoracat#
I tried to execute apt-get and got the Failed To Fetch http: (where the system needed to go to get the packages.
Since this process has failed I am going on line and doing what I can to confirm the DHCP, the subnet mask, the gateway and call my ISP if necessary. And than re-install Debian.

I see that the DHCP step should of be completed and this is what is causing me this distress. I saw when I rebooted that Debian and Windows is dual booted. However, I do not see any other way but to re-install.
It's clear now what is essential and vital-....a connection-

Last edited by Ztcoracat; 08-07-2012 at 05:46 PM. Reason: Have the DHCP information now
 
Old 08-07-2012, 11:03 PM   #88
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Quote:
Originally Posted by Ztcoracat View Post
I tried to execute apt-get and got the Failed To Fetch http: (where the system needed to go to get the packages.
Since this process has failed I am going on line and doing what I can to confirm the DHCP, the subnet mask, the gateway and call my ISP if necessary. And than re-install Debian.

I see that the DHCP step should of be completed and this is what is causing me this distress. I saw when I rebooted that Debian and Windows is dual booted. However, I do not see any other way but to re-install.
It's clear now what is essential and vital-....a connection-
The driver is on another cd I will search packages & let you know , which cd.
 
Old 08-07-2012, 11:07 PM   #89
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
That would be very helpful. Thank You
 
Old 08-07-2012, 11:20 PM   #90
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
http://packages.debian.org/squeeze/firmware-ralink
Here you can also check dependencies if not already installed you will also need to fulfill them.
I have never had to do it this way so maybe someone like widget can assist you in installing.
It maybe as simple as downloading thru ubuntu & copying to /home/username/Downloads in your debian system, then extracting.

Last edited by EDDY1; 08-07-2012 at 11:26 PM.
 
  


Reply



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
LXer: How to add Debian Squeeze to your Debian Lenny FAI install server LXer Syndicated Linux News 0 09-08-2011 07:21 PM
LXer: How To Install A (Canon) Printer On Debian And Debian-Like Systems LXer Syndicated Linux News 0 05-20-2011 11:01 AM
how can i install debian 5.06 in my pc i have downloaded debian-update-5.0.6-i386-DVD siddtanu Debian 2 10-21-2010 02:56 PM
Debian Etch install from dvd, not authenticated by Debian jiobo Linux - Security 3 01-11-2009 07:55 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 09:14 PM.

Main Menu
Advertisement
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
Twitter: @linuxquestions
Open Source Consulting | Domain Registration