Announcement

Collapse
No announcement yet.

wireless

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    wireless

    im sorry for this new thread but my ndiswrapper+bcmwl5.inf is working fine in ubuntu hardy

    i installed kubuntu hardy remix


    skal@skal:~$ sudo lspci | grep Broadcom
    03:00.0 Network controller: Broadcom Corporation BCM4312 802.11a/b/g (rev 02)

    skal@skal:~$ sudo ifconfig -a
    eth0 Link encap:Ethernet HWaddr 00:1b:24:58:83:9d
    inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
    inet6 addr: fe80::21b:24ff:fe58:839d/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:1528 errors:0 dropped:0 overruns:0 frame:0
    TX packets:1697 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:1218785 (1.1 MB) TX bytes:298864 (291.8 KB)
    Interrupt:252 Base address:0x6000

    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:13 errors:0 dropped:0 overruns:0 frame:0
    TX packets:13 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:712 (712.0 B) TX bytes:712 (712.0 B)

    skal@skal:~$ sudo iwconfig
    lo no wireless extensions.

    eth0 no wireless extensions.


    i tried using ndiswrapper and wicd but as u can c the interface is not detected

    any help??


    for ubuntu i did this

    Broadcom Wireless Setup for Hardy (Step by step)
    I used the following steps to enable my Broadcom Wireless BCM4312 (rev 02).

    Step 1 (run in terminal)

    echo 'blacklist bcm43xx' | sudo tee -a /etc/modprobe.d/blacklist
    sudo apt-get install ndiswrapper-utils-1.9
    mkdir ~/bcm43xx; cd ~/bcm43xx

    For Step 2, You can check your Broadcom wireless version with this command in terminal : "lspci | grep Broadcom\ Corporation",if your wireless device is different from BCM4312 (rev 02), please refer to the following link for this step and you can continue again with step 3 onwards:

    https://help.ubuntu.com/community/Wi...f971ca757b2851


    Step 2 (run in terminal)

    sudo apt-get install cabextract
    wget ftp://ftp.compaq.com/pub/softpaq/sp3...00/sp34152.exe
    cabextract sp34152.exe

    Step 3 (run in terminal)

    sudo ndiswrapper -i bcmwl5.inf
    ndiswrapper -l
    sudo depmod -a
    sudo modprobe ndiswrapper
    sudo cp /etc/network/interfaces /etc/network/interfaces.orig
    echo -e 'auto lo\niface lo inet loopback\n' | sudo tee /etc/network/interfaces
    sudo ndiswrapper -m
    echo 'ndiswrapper' | sudo tee -a /etc/modules
    echo 'ENABLED=0' | sudo tee -a /etc/default/wpasupplicant

    Step 4 (run in terminal)

    sudo aptitude remove b43-fwcutter

    Step 5 (run in terminal)

    sudo gedit /etc/init.d/wirelessfix.sh

    Step 6

    Paste the followings in the opened file(wirelessfix.sh)and make sure you save it before continuing Step 7

    #!/bin/bash
    modprobe -r b44
    modprobe -r b43
    modprobe -r b43legacy
    modprobe -r ssb
    modprobe -r ndiswrapper
    modprobe ndiswrapper
    modprobe b44

    Step 7 (run in terminal)

    Run this :

    cd /etc/init.d/ && sudo chmod 755 wirelessfix.sh

    Step 8 (run in terminal)

    finally run this:

    sudo update-rc.d wirelessfix.sh defaults

    Step 9

    Restart your machine

    #2
    Re: wireless

    guys it worked

    follow the above procedure it works

    needed to remove the driver 5 times and install it 3 times and then a reboot

    Comment

    Working...
    X