Linksys WMP54GS Wireless with Linux
Results 1 to 14 of 14

Thread: Linksys WMP54GS Wireless with Linux

Hybrid View

  1. #1
    Registered User
    Join Date
    Dec 2004
    Posts
    1

    Question Linksys WMP54GS Wireless with Linux

    How do I make it work with Fedora, Linux?
    I called Linksys and they do not have a Linux driver.
    If you can, I need detailed instructions how to make it work as I am very new to this type of stuff. I also need to know what drivers or utility I would need to make it work.

    Please help.

    Thanks,
    Jamnz

  2. #2
    Registered User
    Join Date
    Sep 2003
    Posts
    11

    No answers?

    84 reviews of this question and not one attempted reply indicating how to make a Linksys WMP54GS work on Linux Fedora.
    Bah-humbug

  3. #3
    Registered User +Daemon+'s Avatar
    Join Date
    Jan 2002
    Location
    RC, Ca
    Posts
    3,406
    - download the windows drivers. Extract them to c:\temp\linksys
    - Now burn them or put them on a media or somthing so you can transfer these files over to linux (note: linux wont beable to extract the exe file)
    - Download ndiswrapper for linux located at http://sourceforge.net/project/showf...group_id=93482
    - Now make sure you have all the development tools installed in fedora
    - Now download dhcpcd from http://www.phystech.com/ftp/dhcpcd-1.3.22-pl4.tar.gz
    - log into your linux box as root
    - Now make make sure all the files (*gz files, and linksys driver files) are in the root partition on the linux machine (/root/wireless_driver) if "wireless_driver" is not there make the directory (which u will have to do) "mkdir /root/wireless_driver"
    - now at the command prompt (terminal) go into the "wireless_driver" directory "cd /root/wireless_driver"
    - now type "tar xvfpz ndiswrapper-0.12.tar.gz"
    - "cd ndiswrapper-0.12"
    - "make install"
    - "cd .."
    - "tar xvfpz dhcpcd-1.3.22-pl4.tar.gz"
    - "cd dhcpcd-1.3.22"
    - "./configure"
    - "make && make install"
    - "cd .."
    - "source /etc/profile" (note: you might want to edit root's .bashrc and add source /etc/profile there, some how fc3 doesnt have root source /etc/profile for some reason)
    - "cd /root/wireless_driver/WMP54GS_20040423/Drivers"
    - "ndiswrapper -i BCMWL5.inf"
    - "ls /etc/ndiswrapper/bcmwl5" u should get a list of alot file in here
    - "modprobe ndiswrapper"
    - "dmesg wlan0" show see wlan0 if its there your good if not then somthings wrong - please post everything thats comes out of dmesg "dmesg > demout"
    - now for a little script open your favorite text editor and copy the following code:

    #Sample ndiswrapper script - By: Derrick Rose

    #Load ndiswrapper module
    echo "Starting Ndiswrapper Driver..."
    /sbin/modprobe ndiswrapper

    #Setup Essid
    echo "Setting up ESSID..."
    iwconfig wlan0 essid "your essid here"

    #Setup WEP Key if you have one
    #Uncomment below for WEP
    #echo "Setting up KEY..."
    #iwconfig wlan0 yourkeyhere

    #Setting up DHCP on wlan0
    echo "Starting DHCP on wlan0 [ 10 sec timeout ]"
    dhcpcd -t 10 wlan0


    - the script above will setup your wireless card for. Now save this to a file in roots directory (/root) called wireless
    - "chmod +x wireless"
    - to run manually type "./wireless" as root
    - If you want to automaticly load on startup do the following
    - "cat wireless >> /etc/rc.d/rc.local"

    hope this works for you, its the ndiswrapper method, somtimes this works if no linux drivers, we just use the windows driver on linux

    D
    Last edited by +Daemon+; January 1st, 2005 at 11:28 PM.

  4. #4
    Registered User
    Join Date
    Jan 2005
    Posts
    3
    Daemon, that's an awesome walkthrough, but I have a correction and a solution:

    Firstly, the section of the script with the WEP key should actually be:

    #Setup WEP Key if you have one
    #Uncomment below for WEP
    #echo "Setting up KEY..."
    #iwconfig wlan0 key yourkeyhere

    You left out the "key" in the above line.


    The solution is that if you restart your computer using this form, for me at least, I ended up not being able to access the Internet any more. In order to fix this, I had to delete the /etc/dhcpc/dhcpcd-wlan0.pid file, then rerun "dhcpcd -t 10 wlan0". This fixed everything. You may want to add that to the script.
    Last edited by Cabhan; January 18th, 2005 at 01:13 AM.

  5. #5
    Registered User
    Join Date
    Jan 2005
    Posts
    3

    I am so in need of help.....

    Daemon,
    I followed your instructions (and Cabhan, your input as well) to the letter.
    Exactly as instructed, at least 6 different times, to ensure that I was not making any mistakes.

    Output of "dmesg wlan0" (last three lines) is:

    wlan0: ndiswrapper ethernet device 00:0f:66:70:06:a8 using driver bcmwl5
    wlan0: encryption modes supported: WEP, WPA with TKIP, WPA with AES/CCMP
    ndiswrapper: driver bcmwl5 (Linksys,02/19/2004, 3.50.21.11) added

    There is no "/etc/dhcpc/dhcpcd-wlan0.pid" file.

    Reboot does nothing to help.
    I'm happy to provide any info needed to make this work.

    Thanks.

  6. #6
    Registered User
    Join Date
    Jan 2005
    Posts
    3
    I've been working out some other problems with the Internet on another forum as well, but I've got one question that will probably make it easier for anyone to help you out:

    First off, I assume that the problem is still a lack of Internet access?

    Now then, what's the output of the command

    Code:
    iwconfg wlan0

  7. #7
    Registered User
    Join Date
    May 2006
    Posts
    1
    Using Centos-4.3-i386 version of Linux. Can't get the adapter working. I go through the fix that was listed above but when I get to the line "ndiswrapper -i BCMWL5.inf" I get errors and I can't proceed farther. Is there some trick that I am missing?
    And isn't there an easier way? I just got off the support line with Linksys and all they could say was that they don't support Linux.
    If anyone can shed some light on this issue and how to get around it, that would be great.
    It works fine on my XP system.

    Thanks

Similar Threads

  1. Linux Bookmarks
    By +Daemon+ in forum Linux
    Replies: 15
    Last Post: November 20th, 2007, 01:32 AM
  2. Linksys wireless network card in IBM Thinkpad T23
    By imcol in forum Internet and Networking
    Replies: 7
    Last Post: July 15th, 2004, 10:56 AM
  3. Linksys USB wireless problem
    By Gollo in forum Linux
    Replies: 2
    Last Post: May 14th, 2004, 12:42 AM
  4. Linksys wireless router antenna connectors
    By mongo69 in forum Networking
    Replies: 11
    Last Post: September 3rd, 2003, 10:26 AM
  5. linksys wireless pci adapter
    By and_1_69 in forum Tech-To-Tech
    Replies: 1
    Last Post: October 28th, 2001, 09:01 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •