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

Notices

Tags used in this thread
Popular LQ Tags ,

Reply
 
Thread Tools
Old 10-15-2009, 02:14 AM   #1
Diomedes
Member
 
Registered: Dec 2004
Location: Ohio
Distribution: Fedora 11
Posts: 101
Thanked: 1
Installing Debian on Laptop - No Wired Connection Available


[Log in to get rid of this advertisement]
Hey everybody!

So I'm making the leap from Fedora to Debian. I like Fedora. It's just been a little disappointing lately. I used the Debian LiveCD for a while, and I really like it.
Trouble is, I have a laptop. The wireless card is an Intel 3945 Pro (or something along those lines -- given me so much trouble you'd think I would remember by now). I'm trying to install Debian from the first install CD and install the rest via internet (if it doesn't work quite like that, stop me here, please). When I get to that point in the installer, it tells me it needs "iwlwifi-3945-1.ucode". I have iwlwifi-3945-2.ucode on a flash drive, and I select the option to probe removable media for this file. It tells me it can't find anything useful, continue with offline installation.
Could anyone be so kind as to walk me through a way to install this wireless driver during the install, or something of that nature? Thank you! Sorry, this is my first non-wired installation.

Dio
windows_xp_2003 Diomedes is offline  
Tag This Post ,
Reply With Quote
Old 10-15-2009, 03:52 AM   #2
ddaemonunics
Member
 
Registered: May 2008
Distribution: Debian
Posts: 168
Thanked: 4
change iwlwifi-3945-2.ucode to iwlwifi-3945-1.ucode and then try again
linux ddaemonunics is offline     Reply With Quote
Old 10-15-2009, 11:31 AM   #3
Diomedes
Member
 
Registered: Dec 2004
Location: Ohio
Distribution: Fedora 11
Posts: 101
Thanked: 1

Original Poster
Heh... honestly I never thought of that. Thanks! I'll give it a try.
windows_xp_2003 Diomedes is offline     Reply With Quote
Old 10-16-2009, 12:49 AM   #4
Diomedes
Member
 
Registered: Dec 2004
Location: Ohio
Distribution: Fedora 11
Posts: 101
Thanked: 1

Original Poster
Well, that didn't work. But I installed with a wired connection, and it worked. I can't figure out how to get wireless working, though. I was very disappointed with the Debian install. Even with an internet connection, it gave me no option to install development libraries/apps. I had to manually install gcc and make, and neither of them are working properly. It always needs one more thing, then one more thing, and so on. I don't really know where to start.
I guess my question is, how do I get this working in Debian? I can't find a single guide that doesn't involve either building something requiring a dependency I can't find at all, or recompiling the kernel, which I don't know how to do, and can't do anyway because make isn't working.
Can anyone help me out from a fresh Debian install?
Sorry, mods... I'm sure this is in the wrong place. I've honestly lost a lot of sleep over this. I'm going Windows-free finally, and this is hardly an encouraging first step...

Thanks very much
Dio
linuxdebian Diomedes is offline     Reply With Quote
Old 10-16-2009, 11:44 AM   #5
AlucardZero
Senior Member
 
Registered: May 2006
Location: USA
Distribution: Debian
Posts: 1,551
Thanked: 76
Quote:
it gave me no option to install development libraries/apps. I had to manually install gcc and make
lol?

Use Synaptic and install build-essential.
windows_xp_2003 AlucardZero is offline     Reply With Quote
Old 10-16-2009, 11:54 AM   #6
repo
Senior Member
 
Registered: May 2001
Location: Belgium
Distribution: Debian/GNU Linux
Posts: 4,542
Thanked: 447
This is the first I do after the netinstall:
Code:
#apt-get update
#apt-get upgrade
Code:
#apt-get install mplayer mplayer-skin-blue mozilla-mplayer w32codecs mplayer-doc acroread acroread-escript acroread-plugins mozilla-acroread flashplugin-nonfree sun-java6-jre sun-java6-fonts sun-java6-plugin audacious razor clamassassin clamav procmail fetchmail linux-headers-$(uname -r) fortune
Code:
#update-java-alternatives --set java-6-sun
linuxdebian repo is offline     Reply With Quote
Old 10-16-2009, 11:56 AM   #7
repo
Senior Member
 
Registered: May 2001
Location: Belgium
Distribution: Debian/GNU Linux
Posts: 4,542
Thanked: 447
For the wireless
Code:
#apt-get install firmware-iwlwifi
linuxdebian repo is offline     Reply With Quote
Old 10-16-2009, 03:06 PM   #8
Diomedes
Member
 
Registered: Dec 2004
Location: Ohio
Distribution: Fedora 11
Posts: 101
Thanked: 1

Original Poster
Okay, it seems to be doing alright now. Make, that is. I installed fresh and update/upgraded. Thanks, I think I misunderstood the scope of apt. I'll try building the actual driver again when I get time.
Thanks for the help.
windows_vista Diomedes is offline     Reply With Quote
Old 11-08-2009, 11:05 AM   #9
richhav1
LQ Newbie
 
Registered: Nov 2009
Location: south windsor, connecticut, USA
Distribution: debian, DSL-n, sometimes ubuntu or puppy
Posts: 6
Thanked: 0
same problem, missing firmware iwlwifi-3945-1.ucode

i had exactly the same problem, solved it last night (new Lenovo Thinkpad). Error message during installation stated "missing firmware iwlwifi-3945-1.ucode"

Go to System>Software Sources>Debian Software

click box to enable "non-free" software
Select Download from "main server"

i also selected the tab "Third-Party Software" and tried to add new repositories to the list. I tried adding:
Code:
deb http://volatile.debian.org/debian-volatile lenny/volatile firmware-nonfree
after that type:

Code:
aptitude install firmware-iwlwifi
at this point, when you refresh the dialog box, you will connect to a repository and attempt to download and install the firmware. If you were unsuccessful it will tell you your package was not found. If you are successful, then type:

Code:
modprobe iwlwifi-3945
at this point, i was able to reboot and was able to connect to my network wirelessly.

I STILL DON'T KNOW whether it was just enabling the non-free software or the addition of an additional repository to the list that solved the problem, but hey, we'll take it!
linuxdebian richhav1 is offline     Reply With Quote
Old 11-08-2009, 11:09 AM   #10
richhav1
LQ Newbie
 
Registered: Nov 2009
Location: south windsor, connecticut, USA
Distribution: debian, DSL-n, sometimes ubuntu or puppy
Posts: 6
Thanked: 0
BTW, i should cite the Debian Wiki for my information:

http://wiki.debian.org/iwlwifi

This was an excellent resource!
linuxdebian richhav1 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
debian - lost wired network connection. getmizanur Linux - Newbie 3 09-20-2009 07:12 AM
Sharing connection (pc + wireless + wired ++ laptop + wireless) Lullly Linux - Networking 1 03-28-2009 07:34 PM
DSL connection slow on Linux wired connection but fast on Windows wireless Pandarsson Linux - Wireless Networking 7 12-23-2008 08:50 AM
Wired Internet Connection Cannot be Established on Debian Etch Linkhiei Linux - Networking 3 10-07-2007 04:15 AM
Wireless vs wired connection on same laptop rps63ifid Fedora 7 02-02-2005 10:38 PM


All times are GMT -5. The time now is 10:28 PM.

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