LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking
User Name
Password
Linux - Wireless Networking This forum is for the discussion of wireless networking in Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 06-29-2008, 10:36 AM   #1
H.meric
LQ Newbie
 
Registered: Jun 2008
Posts: 1

Rep: Reputation: 0
wireless card problem..


hi.. i'm using debian lenny and some problems with wireless..

i cant install the wireless driver.. its winbondport - Google Code

one friend said that i must :


su
apt-get install build-essential kernel-package linux-source-2.6.24
cd /usr/src
tar xvjf linux-source-*.tar.bz2
ln -s linux-source-* linux # *kernel version
exit
cd ~/trunk/linux
make
su
make install
depmod -ae
modprobe w35und

but i m getting this error..


/Desktop/trunk/linux$ make
make -C /lib/modules/2.6.24-1-686/build M=/home/kahve/Desktop/trunk/linux modules
make: *** /lib/modules/2.6.24-1-686/build: No such file or directory. Stop.
make: *** [all] Error 2
how can install this driver..
 
Old 06-30-2008, 12:28 AM   #2
Greenfuse
Member
 
Registered: Nov 2004
Distribution: gentoo, arch centos
Posts: 152

Rep: Reputation: 20
I do not know much about a debian kernel installation but your friend's instructions look very odd to me. Do you know what those commands you typed actually mean?

In most distros with a pre built kernel, the best approach is to install the headers for that kernel, then build the wireless driver.
 
Old 07-02-2008, 02:38 AM   #3
adfira
LQ Newbie
 
Registered: Jul 2008
Posts: 3

Rep: Reputation: 0
hi...
i'm newbie in linux. and was try to use my USB wifi adapter TP-Link TL-WN322G. and i use mandriva linux. how to install this wifi adapter..? please tell me step by step to configure this. thanks for all.
 
Old 07-02-2008, 07:03 PM   #4
Greenfuse
Member
 
Registered: Nov 2004
Distribution: gentoo, arch centos
Posts: 152

Rep: Reputation: 20
adfira
Find out what chipset your adapter uses. Search this forum or use google. Make sure you know the exact version of your adapter, because vendors will use different chipsets in different versions of the same model. The command
lsusb
Should help to tell you the exact version.

Find out what driver is used for the chipset and install it.

If there is no linux driver for your chipset, use ndiswrapper for the driver. Look for instructions on using ndiswrapper.

Use mandriva's control centre ('configure your computer') to add a new network with the wireless device. I don't remember the exact layout of the control centre, it chould have the network icon on the left, and within that there is something like 'add a new network'.
 
Old 07-03-2008, 02:07 AM   #5
adfira
LQ Newbie
 
Registered: Jul 2008
Posts: 3

Rep: Reputation: 0
thanks Greenfuse..!!
my TP-Link TL-WN322G uses Zydas ZD1211 chipset. i've downloaded this driver: ZD1211LnxDrv_2_22_0_0.tar.gz. but i don't know how to use & install this driver, especialy if in konsole command. please tell me step by step to configure this. thank you...!!
 
Old 07-10-2008, 02:41 AM   #6
Greenfuse
Member
 
Registered: Nov 2004
Distribution: gentoo, arch centos
Posts: 152

Rep: Reputation: 20
Sorry not to reply earlier adfira, I have had a busy week ...

While I do not know the specifics of this driver, I can give you some general steps that might be useful.

First of all you need a few tools - use your package manager to install (if they are not installed on your system): gcc, make and kernel-headers (the headers must be the version which corresponds to your installed kernel. Use the command < uname -r > to see what your kernel is)

from the commandline ($ as user # as root)

Copy the file to a safe place, such as the tmp folder
$ cp ZD1211LnxDrv_2_22_0_0.tar.gz /tmp

change to the /tmp directory
$ cd tmp

unzip (extract and decompress)the file
$ tar -xzvf ZD1211LnxDrv_2_22_0_0.tar.gz

list the contents of the /tmp directory to find the name of the directory that was created by unzipping the file, and contains the tools to install the driver.
$ ls

change into the new directory
$ cd <name of new directory>

list the contents to see what you have there
$ ls

You should see, among others the files README and INSTALL. Read them both with the 'less' utility.
$ less README (hit the <q> key to exit 'less')
$ less INSTALL

TIP - it can help to have two terminals open so you can read the instrusctions with one while carrying them out with the other.

These files should have all of the instructions you need to install and use the driver.

Normally the installation process is

$ ./configure
$ make
# make install

But, as described above, check the README and INSTALL files.
 
Old 07-12-2008, 01:46 AM   #7
adfira
LQ Newbie
 
Registered: Jul 2008
Posts: 3

Rep: Reputation: 0
thanks, greenfuse...
i 'will try all of your tips, even i still confuse to do that. btw, thanks.
my friend recommended me to change my TP-Link TL-WN322G with other type: TL-WN321G that uses Ralink Rt73 chipset inside. he says this type is better than Zydas chipset and supported Linux driver. how about you..? do you think i should change my USB wifi adapter? and is true if the Ralink chipset is better and easy to configure in linux than Zydas chipset..?
thanks,
 
Old 07-13-2008, 08:11 PM   #8
Greenfuse
Member
 
Registered: Nov 2004
Distribution: gentoo, arch centos
Posts: 152

Rep: Reputation: 20
Ralink is what I use and it works fine. Many people recommend it.

Your debian might have drivers installed or available in the repositories.

I use the drivers from serialmonkey, managed by their 'Rutilt' utility. See here for instructions on installing them.

Recent linux kernels have ralink driver modules built into them, but for now they are buggy and best avoided.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem Wireless Card arbisis Linux - Hardware 2 02-27-2007 06:16 AM
Wireless Card Problem shafty1968 Ubuntu 3 11-01-2006 03:22 PM
Wireless Card Problem Jongi Fedora 3 05-19-2006 02:45 PM
Wireless card problem.. KyChop Linux - Wireless Networking 3 07-27-2005 06:37 PM
Wireless Card Problem sonikntails Slackware 2 08-16-2002 02:28 PM


All times are GMT -5. The time now is 12:41 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
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration