LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 06-01-2014, 12:01 PM   #1
Golden_fox
LQ Newbie
 
Registered: Jun 2014
Posts: 15

Rep: Reputation: Disabled
Having issues with ralink wireless card.


So i recently purchased a Rosewill RNX-N600UBE. Ive been trying to install the firmware and drivers, but i keep running into errors, and then dead ends when I try to solve the issue.

Ill make it absolutely clear that im am a complete and utter noob when it comes to linux, which no doubt, is attributing to my troubles.

The Wireless card has a RT3572 Chipset and im using an install of the Kali linux distro on a macbook pro.

I can get internet using the macbooks internal wireless card, but it does not have the range I want.

Currently my main problem is that i cant figure out how to install the driver.

Any help would be greatly appreciated.
 
Old 06-01-2014, 12:39 PM   #2
sean.ferguson
LQ Newbie
 
Registered: Feb 2012
Location: Scotland
Distribution: Ubuntu 16.04 / Debian 8 / Arch
Posts: 25

Rep: Reputation: Disabled
Have you tried this: rt2800usb
 
Old 06-02-2014, 10:58 AM   #3
Golden_fox
LQ Newbie
 
Registered: Jun 2014
Posts: 15

Original Poster
Rep: Reputation: Disabled
Yes, firmware-ralink is installed.
 
Old 06-02-2014, 12:18 PM   #4
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Quote:
but i keep running into errors, and then dead ends when I try to solve the issue.
It may help us help you if you explained exactly what you tried and how the system responded to what you tried. "running into errors" is a bit like going to your GP and saying, "I don't feel well" and then awaiting a cure. Get it?
jdk
 
Old 06-02-2014, 04:48 PM   #5
Golden_fox
LQ Newbie
 
Registered: Jun 2014
Posts: 15

Original Poster
Rep: Reputation: Disabled
Specifically, ive read through several how to's on installing this cards drivers, but none of them end up working becuase of one error or another. From what ive gathered, i need to insall this chipsets drivers, but whenever I run the "make" command, i get this output.

Code:
make -C tools
make[1]: Entering directory `/home/fox/System/Driver/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/tools'
gcc -g bin2h.c -o bin2h
make[1]: Leaving directory `/home/fox/System/Driver/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/tools'
/home/fox/System/Driver/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/tools/bin2h
cp -f os/linux/Makefile.6 /home/fox/System/Driver/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/os/linux/Makefile
make -C /lib/modules/3.14-kali1-amd64/build SUBDIRS=/home/fox/System/Driver/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/os/linux modules
make: *** /lib/modules/3.14-kali1-amd64/build: No such file or directory.  Stop.
make: *** [LINUX] Error 2
 
Old 06-02-2014, 11:26 PM   #6
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
You appear to be trying to compile your own driver. Is there any reason why you don't use the driver suggested above? Does this page help at all?
jdk
 
Old 06-03-2014, 09:39 AM   #7
Golden_fox
LQ Newbie
 
Registered: Jun 2014
Posts: 15

Original Poster
Rep: Reputation: Disabled
I was under the impression that i needed both firmware, and a driver. Ive followed that page to the letter. I didnt come across any problems following it aside from my device still not working when connecting it afterwards.
 
Old 06-03-2014, 11:00 AM   #8
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Quote:
Originally Posted by Golden_fox View Post
I was under the impression that i needed both firmware, and a driver. Ive followed that page to the letter. I didnt come across any problems following it aside from my device still not working when connecting it afterwards.
I think these excerpts from the document show that this is not the case.
Quote:
rt2800usb is a driver produced by the rt2x00 project, supporting Ralink 802.11n USB chipsets

Update the list of available packages and install the firmware-ralink package:

apt-get update && apt-get install firmware-ralink

Connect the device to your system.

The rt2800usb kernel module is automatically loaded for supported devices. Configure your wireless interface as appropriate.
jdk
 
Old 06-04-2014, 10:31 AM   #9
Golden_fox
LQ Newbie
 
Registered: Jun 2014
Posts: 15

Original Poster
Rep: Reputation: Disabled
Well unfortunately it is not working. I am very new to linux so I do not know how to diagnose the problem. Ive attached the card and lsusb picks up that it is a ralink wireless chip, but iwconfig/ifconfig doesnt even ackknowledge its existence as a wireless interface.
 
Old 06-04-2014, 11:46 AM   #10
sean.ferguson
LQ Newbie
 
Registered: Feb 2012
Location: Scotland
Distribution: Ubuntu 16.04 / Debian 8 / Arch
Posts: 25

Rep: Reputation: Disabled
I may be clutching at straws here, because what few wireless card i do use they all seem to work without much hassle in linux. So for that I apologise before i go any further.

Have you tried running, from the terminal:
Code:
sudo modprobe rt3572sta
if the above command works for you, you will need to add rt3572sta to the end of /etc/modules file to allow it to start automagically every boot.

edit: you may also want to look at the following page [here] and see if this may help you?

Last edited by sean.ferguson; 06-04-2014 at 11:55 AM.
 
Old 06-04-2014, 02:40 PM   #11
Golden_fox
LQ Newbie
 
Registered: Jun 2014
Posts: 15

Original Poster
Rep: Reputation: Disabled
I get the output

Code:
FATAL: Module rt3572sta not found.
That page doesnt reallly help either, because as i said before, the make command will not work.

Last edited by Golden_fox; 06-04-2014 at 02:47 PM.
 
Old 06-04-2014, 03:05 PM   #12
sean.ferguson
LQ Newbie
 
Registered: Feb 2012
Location: Scotland
Distribution: Ubuntu 16.04 / Debian 8 / Arch
Posts: 25

Rep: Reputation: Disabled
do you have wpa_supplicant installed? Im unsure if this is in Kali linux by default so I have to ask

also check you have build-essentials installed

Code:
sudo apt-get install build-essential linux-headers-generic

Last edited by sean.ferguson; 06-04-2014 at 03:18 PM.
 
Old 06-04-2014, 10:20 PM   #13
Golden_fox
LQ Newbie
 
Registered: Jun 2014
Posts: 15

Original Poster
Rep: Reputation: Disabled
I tried to install the headers and got this:

Code:
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package linux-headers-generic is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'linux-headers-generic' has no installation candidate
So I did aptitude update, but got this at the end of the output.

Code:
W: Failed to fetch http://us.debian.org/debian/dists/sid/Release.gpg: Could not resolve 'us.debian.org'
W: Some index files failed to download. They have been ignored, or old ones used instead.
 
Old 06-05-2014, 12:10 AM   #14
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Can you post the contents of your /etc/apt/sources.list file.
jdk
 
Old 06-05-2014, 11:38 AM   #15
Golden_fox
LQ Newbie
 
Registered: Jun 2014
Posts: 15

Original Poster
Rep: Reputation: Disabled
Sure.

Code:
# 

# deb cdrom:[Debian GNU/Linux 7.0 _Kali_ - Official Snapshot amd64 LIVE/INSTALL Binary 20140108-17:05]/ kali contrib main non-free

#deb cdrom:[Debian GNU/Linux 7.0 _Kali_ - Official Snapshot amd64 LIVE/INSTALL Binary 20140108-17:05]/ kali contrib main non-free

deb http://http.kali.org/kali kali main non-free contrib
deb-src http://http.kali.org/kali kali main non-free contrib
deb http:us.debian.org/debian sid main non-free
deb http://http.debian.net/debian/ wheezy main contrib non-free

## Security updates
deb http://security.kali.org/kali-security kali/updates main contrib non-free

Last edited by Golden_fox; 06-06-2014 at 05:06 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
Driver issues with Wireless card (Asus PCE-N13, ie ralink rt2860) in Fedora 12 cander49 Linux - Networking 2 10-28-2010 01:52 PM
Fedora 12, driver issues with Wireless card (Asus PCE-N13, ie ralink rt2860) cander49 Fedora 0 08-24-2010 04:52 PM
ralink technology Wireless card problem Graeme5 Linux - Wireless Networking 2 10-15-2008 08:33 PM
Ralink wireless card wont enable chriswhiteoak Linux - Wireless Networking 2 08-15-2008 03:40 PM
Help Ubuntu with wireless card Ralink italiano40 Linux - Wireless Networking 1 10-14-2006 07:34 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:26 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