-1

I'm running 12.04 and do not have a clue how to set up my wireless card. The strange thing is the box says that it's made by netis. But on a query (lspci) of the device, it says:

01:02.0 Network controller: Ralink corp. Device 5362

I guess Ralink manufactured their chips. I looked on the NETIS site, and they only have a windows driver. I looked on the Ralink site, which has moved, and they do not have a driver for that device or model number.

Could someone suggest a driver that might work as far as the ralink ones go or is there a workaround maybe?

Hoping someone else has some time and can walk a newb through this task.

guntbert
  • 13,475

2 Answers2

0

rt2800pci is a project produced by the rt2x00 driver that supports the PCI chipset Ralink 802.11n. you can see the list of supported devices by typing:

modinfo rtl2800pci

this is the output (apart the kernel version):

filename:       /lib/modules/3.11.0-19-generic/kernel/drivers/net/wireless/rt2x00/rt2800pci.ko
license:        GPL
firmware:       rt2860.bin
description:    Ralink RT2800 PCI & PCMCIA Wireless LAN driver.
version:        2.3.0
author:         http://rt2x00.serialmonkey.com
srcversion:     259E8826760AAB9E718FD85
alias:          pci:v00001814d0000539Fsv*sd*bc*sc*i*
alias:          pci:v00001814d0000539Bsv*sd*bc*sc*i*
...
alias:          pci:v00001814d00005362sv*sd*bc*sc*i*<-- your chipset
alias:          pci:v00001814d00005360sv*sd*bc*sc*i*
...
depends:        rt2x00lib,rt2800lib,rt2x00mmio,rt2x00pci,eeprom_93cx6
intree:         Y
vermagic:       3.11.0-19-generic SMP mod_unload modversions 
parm:           nohwcrypt:Disable hardware encryption. (bool)

Mount the drivers in the kernel

sudo modprobe rt2800pci

type dmesg for print kernel message on your screen.

Here you can find the project page

If it does not work you can try the manufacturer's drivers. Here is driver page.

Another possibility is to use ndiswrapper, but i'm not sure it is work. There are many guides on the internet that you can find easily. This one is here

I hope this helps

girardengo
  • 5,005
0

I am answering my own question. Nothing would get that card to work. I am returning it today and in the meantime using a USB network card from Level1 that worked immediately after installing with WINE. Thank you all for trying to help.