Results 1 to 10 of 28
Ok so i just install Debian on my old laptop, i have both a pcmcia and usb Wifi adapter, they dont show up when i plug them in, apparently i ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-12-2007 #1Just Joined!
- Join Date
- Oct 2007
- Posts
- 13
Wireless in Debian
Ok so i just install Debian on my old laptop, i have both a pcmcia and usb Wifi adapter, they dont show up when i plug them in, apparently i have to type in shed load of code to even think about installing programs or drivers?
So i go on Terminal, but when i type things like:
apt-get install wireless-tools
it says:
E: could not open lock file /var/lib/dpkg/lock - open (13 permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
I dont have a clue what im doing, so in REALLY simple terms, how do i get either my usb or pcmcia card to connect to my Wifi network!
What do i have to type, and tell me were to type it. Give me detail...
P.S i cant move anything into / because i dont have permission apprently
- 10-12-2007 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
I've never run wireless before so I can't offer any specific help, but maybe this HowTo will help you to get up and running:
http://www.linuxforums.org/forum/lin...lan-linux.htmloz
- 10-13-2007 #3
First, you will enter commands not code. You do this in a terminal, in windows it is called a command line.
Device drivers are loaded as modules to the Linux kernel, so they are referred to simply as modules.
To know which modules your wireless cards need, we need to know the chipset that is used on the circuit board. The name of the card is not as important as the name of the chipset.
To find out which chipsets you have, first you need to be root. I'm not sure how Debian does it, so I will give two examples. The first method will log you in for as long as you have the terminal open. (The # is a prompt, don't enter it)
The next way will enable you to do only one command, after you enter the password.Code:# su # password <enter your root password here>
Now enter this for a card that is inside the laptop (on-board).Code:# sudo <enter command here> # password <enter your root password here>
It will print out all PCI devices on your system. Copy and post the output.Code:# lspci
For USB devices enter this.
You can copy and post that too, but I think it will be easier to configure the on-board device, so let's do that one first.Code:# lsusb
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 10-13-2007 #4Just Joined!
- Join Date
- Oct 2007
- Posts
- 13
I only have the USB adapter now, but ill copy and paste what it said:
Code:Bus 002 Device 001: ID 0000:0000 Bus 001 Device 002: ID 050d:7051 Belkin Components Bus 001 Device 001: ID 0000:0000
- 10-13-2007 #5
Unfortunately this isn't giving us the information that we need.

Let's try something else. Is there an installation CD that came with this card? It should have the WinXP drivers on it. Copy it to a folder in your /home directory, and post the name of it. Then I'll tell you how to unpack it in Linux.
If you don't have a CD, can you download the WinXP driver?Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 10-13-2007 #6Just Joined!
- Join Date
- Oct 2007
- Posts
- 13
I have a cd somewere around with WinXP drivers yes, but if not they are downloadable from the belkin website.
Oh btw i cant copy anything into any / directories (maybe home not sure) because im not authorised apparently?
EDIT: Drivers (.exe) are in the home folder under my name, so continue...
- 10-13-2007 #7
OK, What you do next may vary, according to the type of .exe file it is. There are three ways to extract the needed files, I'll give you all three in order that you should try them.
First you need to direct the terminal to the folder that the file is in. To do this use the cd command, followed by the folder location.
This is just an example, as I don't know the exact name of the user folder or the driver folder.Code:> cd /home/WirelessMonkey/WinXP_driver
Then extract the files with one of these commands. Change "drivername" to the exact name of the file. Caps are important, if any of the letters are capitalized.
When using the wine method, it will actually try to run the windows installer. Make sure you direct it to install to the directory/folder that the .exe file is in, or another folder that you created in your /home directory.Code:> cabextract drivername.exe or > unzip -a drivername.exe or > wine drivername.exe
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 10-13-2007 #8Just Joined!
- Join Date
- Oct 2007
- Posts
- 13
ok so its all unzipped, now?
- 10-13-2007 #9
I need you to look for your WinXP driver, or any documentation that will tell us more about the card's chipset
If it is a Broadcom chipset, the driver may be this: bcmwl5.sys. If you have this you can use NDISwrapper. Dig around and see what you can find.Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 10-13-2007 #10Just Joined!
- Join Date
- Oct 2007
- Posts
- 13
theres quite a few .inf and .sys files, i looked in the manual n stuff but all i could find out was the model number, ill google the chipset and edit this post when i get it, here it is incase u can find out quicker:
Belkin F5D7051 High speed mode wireless G USB network adapter
EDIT: Broadcom 4320 Chipset apparently...


Reply With Quote
