Advertisement
Guest User

Untitled

a guest
Oct 13th, 2010
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. Netgear WG511 v3 HOWTO - Breezy Badger 5.10
  2.  
  3. *** I have edited this post to incorporate some of gt24's comments ***
  4.  
  5.  
  6.  
  7. I'm not sure how these instructions will work with other versions of Ubuntu. I used all of the following in Breezy 5.10.
  8.  
  9.  
  10.  
  11. 1. Unload the prism54 module.
  12.  
  13.  
  14.  
  15. Before getting ndiswrapper, unload the prism54 module from your system. Ubuntu detects the WG511v3 on boot and loads the prism54 module. Although this card does have a Prism chipset (you can find out by typing "lspci" in the terminal), v3 is not currently supported by the prism54 project:
  16.  
  17. Code:
  18.  
  19.  
  20.  
  21. sudo modprobe -r prism54
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29. Also, add a line containing the following to the /etc/hotplug/blacklist file using your favorite text editor (must have root privelages).
  30.  
  31.  
  32.  
  33. Code:
  34.  
  35.  
  36.  
  37. prism54
  38.  
  39.  
  40.  
  41. That will prevent your system from loading the prism54 module at boot. (Thanks bimberi)
  42.  
  43.  
  44.  
  45. 2. Install ndiswrapper.
  46.  
  47.  
  48.  
  49. Code:
  50.  
  51.  
  52.  
  53. sudo apt-get update
  54.  
  55. sudo apt-get install ndiswrapper-utils
  56.  
  57.  
  58.  
  59.  
  60.  
  61. 3. Download the driver.
  62.  
  63.  
  64.  
  65. cd into a directory you prefer and type in terminal and:
  66.  
  67. Code:
  68.  
  69.  
  70.  
  71. wget http://www.smc.com/files/AV%5CDR_2802wV.2_WHQL.zip
  72.  
  73.  
  74.  
  75.  
  76.  
  77. Please let me know if the above step doesn't work. If you get a 404 error, it may just be that the file no longer exists at that location.
  78.  
  79. Unzip the file:
  80.  
  81. Code:
  82.  
  83.  
  84.  
  85. unzip AV\DR_2802wV.2_WHQL.zip
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93. 4. Load the driver.
  94.  
  95. cd into the "Driver" directory and cd into the "WinXP" directory. In this directory, you should see a file named "2802W.inf". In the terminal, type:
  96.  
  97. Code:
  98.  
  99.  
  100.  
  101. sudo ndiswrapper -i 2802W.inf
  102.  
  103.  
  104.  
  105.  
  106.  
  107. Check to see if the last step went okay with:
  108.  
  109. Code:
  110.  
  111.  
  112.  
  113. sudo ndiswrapper -l
  114.  
  115.  
  116.  
  117.  
  118.  
  119. You should see:
  120.  
  121. Code:
  122.  
  123.  
  124.  
  125. Installed ndis drivers:
  126.  
  127. 2802w driver present, hardware present
  128.  
  129.  
  130.  
  131. *** gt24 told me (see below) that the drivers on the CD worked just fine and that the link I've posted above no longer works. If anyone finds a working link for v3, let me know and I'll update this. ***
  132.  
  133.  
  134.  
  135. 5. Load the ndiswrapper module.
  136.  
  137.  
  138.  
  139. Code:
  140.  
  141.  
  142.  
  143. sudo modprobe ndiswrapper
  144.  
  145.  
  146.  
  147.  
  148.  
  149. Make sure everything went okay. Type in the terminal:
  150.  
  151. Code:
  152.  
  153.  
  154.  
  155. dmesg
  156.  
  157.  
  158.  
  159.  
  160.  
  161. Hopefully, you will see the following at the end of this output:
  162.  
  163. Code:
  164.  
  165.  
  166.  
  167. [4298557.630000] ndiswrapper version 1.1 loaded (preempt=no,smp=no)
  168.  
  169. [4298557.760000] ndiswrapper: driver 2802w (SMC,04/29/2004, 3.0.11.1) loaded
  170.  
  171. [4298557.771000] PCI: Enabling device 0000:07:00.0 (0000 -> 0002)
  172.  
  173. [4298557.771000] ACPI: PCI Interrupt 0000:07:00.0[A] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10
  174.  
  175. [4298557.772000] ndiswrapper: using irq 10
  176.  
  177. [4298561.706000] wlan0: ndiswrapper ethernet device xx:xx:xx:xx:xx:xx using driver 2802w, configuration file 1260:3890.5.conf
  178.  
  179. [4298561.706000] wlan0: encryption modes supported: WEP, WPA with TKIP, WPA with AES/CCMP
  180.  
  181.  
  182.  
  183. Your hardware should now be good to go. Please note that the x's above will be replaced by your NIC's MAC address.
  184.  
  185.  
  186.  
  187. 6. Connect to the internet.
  188.  
  189.  
  190.  
  191. Use the Network Adminstration Tool in Breezy to connect to your router. This should be the easiest part. If you run into trouble with this last step, please check other posts and the Wiki before posting here.
  192.  
  193.  
  194.  
  195. 7. Make things easy.
  196.  
  197. If you are successful and don't want to have to modprobe ndiswrapper after every boot, simply do the following:
  198.  
  199. Code:
  200.  
  201.  
  202.  
  203. sudo ndiswrapper -m
  204.  
  205.  
  206.  
  207.  
  208.  
  209. Also, please let me know of any errors in this post. I'm not sure if what I pasted as far as the dmesg output goes, will be what you get, especially the #'s in the brackets, but you should see the text not bracketed. (If this is wrong, someone please let me know)
  210.  
  211.  
  212.  
  213.  
  214.  
  215. http://ubuntuforums.org/showthread.php?t=76804
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement