LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
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
  Search this Thread
Old 12-02-2007, 02:31 AM   #1
firewiz87
Member
 
Registered: Jan 2006
Distribution: OpenSUSE 11.2, OpenSUSE 11.3,Arch
Posts: 240

Rep: Reputation: 37
How to use Dlink DWL-G510??


hi,

I need help on using DWL-G510 wireless card H/W ver:C2 and F/W ver:5.00 on Mandriva 2008. The driver detected by mandriva does not work......

Tried ndidwrapping windows driver (using de ndiswrapper bundled with mandriva 2008),that does nt work too. Is that de latest version of ndiswrapper???

Do help me get my wireless card detected.....ASAP

thanx
 
Old 12-03-2007, 12:13 PM   #2
pentode
Member
 
Registered: Dec 2005
Location: Oregon
Distribution: Debian Testing
Posts: 488

Rep: Reputation: 38
Can you post the output of lsmod and lspci? Also, what does command ndiswrapper -l report back?
 
Old 12-03-2007, 12:42 PM   #3
restless
Member
 
Registered: Feb 2003
Location: Belgium
Distribution: Debian
Posts: 166

Rep: Reputation: 31
if i'm not mistaking DWL-G510 revC uses the ralinktech RT61 drivers, which you can downloading from their site and compile yourself.
 
Old 12-08-2007, 07:00 AM   #4
firewiz87
Member
 
Registered: Jan 2006
Distribution: OpenSUSE 11.2, OpenSUSE 11.3,Arch
Posts: 240

Original Poster
Rep: Reputation: 37
Quote:
Originally Posted by restless View Post
if i'm not mistaking DWL-G510 revC uses the ralinktech RT61 drivers, which you can downloading from their site and compile yourself.
can u plz tell me de website???
 
Old 12-08-2007, 07:52 AM   #5
Person_1873
Member
 
Registered: Sep 2007
Location: Australia
Distribution: Gentoo / Debian / Rasbian / Proxmox
Posts: 519

Rep: Reputation: 44
dude, this one had me bemused for hours, i have exactly the same hardware and it took me forever to find the driver, i have to help you out here or i'll never forgive myself

http://rt2x00.serialmonkey.com/rt61-cvs-daily.tar.gz


thats a link directly to the drivers
extract them then go to a terminal and navigate to the modules folder inside the tarbel you just extracted, become root and type
Code:
#make
#make install
#modprobe rt61
if you encounter any errors you may need to update your GCC compiler to match your kernel version
 
Old 12-08-2007, 07:54 AM   #6
Person_1873
Member
 
Registered: Sep 2007
Location: Australia
Distribution: Gentoo / Debian / Rasbian / Proxmox
Posts: 519

Rep: Reputation: 44
for future reference this should have gone in the wireless networking section
 
Old 12-13-2007, 09:03 AM   #7
firewiz87
Member
 
Registered: Jan 2006
Distribution: OpenSUSE 11.2, OpenSUSE 11.3,Arch
Posts: 240

Original Poster
Rep: Reputation: 37
Quote:
Originally Posted by Person_1873 View Post
dude, this one had me bemused for hours, i have exactly the same hardware and it took me forever to find the driver, i have to help you out here or i'll never forgive myself
Thanx dude......no wonder i love de linux community!!!
 
Old 12-13-2007, 09:20 AM   #8
firewiz87
Member
 
Registered: Jan 2006
Distribution: OpenSUSE 11.2, OpenSUSE 11.3,Arch
Posts: 240

Original Poster
Rep: Reputation: 37
Quote:
Originally Posted by Person_1873 View Post
for future reference this should have gone in the wireless networking section
I ll keep dat in mind......thank u for tellin me......
 
Old 12-14-2007, 06:06 AM   #9
firewiz87
Member
 
Registered: Jan 2006
Distribution: OpenSUSE 11.2, OpenSUSE 11.3,Arch
Posts: 240

Original Poster
Rep: Reputation: 37
Quote:
Originally Posted by Person_1873 View Post
dude, this one had me bemused for hours, i have exactly the same hardware and it took me forever to find the driver, i have to help you out here or i'll never forgive myself

http://rt2x00.serialmonkey.com/rt61-cvs-daily.tar.gz


thats a link directly to the drivers
extract them then go to a terminal and navigate to the modules folder inside the tarbel you just extracted, become root and type
Code:
#make
#make install
#modprobe rt61
#make gives the following error:

make: *** /lib/modules/2.6.22.9-desktop-1mdv/build: No such file or directory. Stop.
rt61.ko failed to build!
make: *** [module] Error 1

what can be done???

i am using mandriva 2008.....
 
Old 12-26-2007, 04:42 AM   #10
Person_1873
Member
 
Registered: Sep 2007
Location: Australia
Distribution: Gentoo / Debian / Rasbian / Proxmox
Posts: 519

Rep: Reputation: 44
run m-a

(is mandriva debian based?...) if not and its RH based download the software development group in your software manager, if so run m-a in a terminal and choose "PREPARE"

that'll install the tools needed to compile software, (use ubuntu 7.10, it has built-in support for rt61 :P)

recap: if red hat based use packet mannager download group "software development" or simmilar, if debian based use module assistant, if not installed install it using
Code:
sudo apt-get install module-assistant
then run m-a as root (if debian based) and choose prepare, or if red hat based try compiling again
 
Old 12-26-2007, 06:04 AM   #11
restless
Member
 
Registered: Feb 2003
Location: Belgium
Distribution: Debian
Posts: 166

Rep: Reputation: 31
do you have your kernel headers installed on your system? You really need to have those installed otherwise you can't compile kernel modules. check that directory if it's really missing.

btw the link for the drivers is http://www.ralinktech.com/ralink/Hom...ort/Linux.html
 
Old 12-27-2007, 02:11 PM   #12
firewiz87
Member
 
Registered: Jan 2006
Distribution: OpenSUSE 11.2, OpenSUSE 11.3,Arch
Posts: 240

Original Poster
Rep: Reputation: 37
Quote:
Originally Posted by Person_1873 View Post
run m-a

(is mandriva debian based?...) if not and its RH based download the software development group in your software manager, if so run m-a in a terminal and choose "PREPARE"

that'll install the tools needed to compile software, (use ubuntu 7.10, it has built-in support for rt61 :P)

recap: if red hat based use packet mannager download group "software development" or simmilar, if debian based use module assistant, if not installed install it using
Code:
sudo apt-get install module-assistant
then run m-a as root (if debian based) and choose prepare, or if red hat based try compiling again
Mandriva is RH based......well....i ll try it out...thanx for de help!!
 
Old 12-30-2007, 06:59 AM   #13
Person_1873
Member
 
Registered: Sep 2007
Location: Australia
Distribution: Gentoo / Debian / Rasbian / Proxmox
Posts: 519

Rep: Reputation: 44
yea well run your graphical software manager and install the group "software development" or whatever it is, i don't personally use mandriva so it's probably a lil different from FC6
 
Old 02-20-2008, 11:36 PM   #14
firewiz87
Member
 
Registered: Jan 2006
Distribution: OpenSUSE 11.2, OpenSUSE 11.3,Arch
Posts: 240

Original Poster
Rep: Reputation: 37
Ok once the rt61 module is compiled successfully, and modprobed, how can i check if the device is working before moving on to the wireless configurations???
 
Old 02-28-2008, 05:13 AM   #15
Person_1873
Member
 
Registered: Sep 2007
Location: Australia
Distribution: Gentoo / Debian / Rasbian / Proxmox
Posts: 519

Rep: Reputation: 44
dunno, try to connect to something?
 
  


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
DLink DWL-G510 Drivers TheDrew202 Linux - Hardware 11 07-13-2008 09:54 PM
Need a DLink DWL-g510 driver for Debian! aznboi1324 Linux - Wireless Networking 6 02-23-2006 09:38 AM
Suse 9.1, Dlink DWL-G510, and ndiswrapper DaveDrass Linux - Hardware 2 07-07-2005 02:45 PM
Dlink DWL-G510 With MADWiFi RemusX2 Linux - Hardware 6 06-01-2005 02:50 PM
DLink DWL-G510 on AMD64 High-Hopes Linux - Wireless Networking 5 01-13-2005 12:48 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking

All times are GMT -5. The time now is 08:26 AM.

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