Page 3 of 10 FirstFirst 12345 ... LastLast
Results 21 to 30 of 98

Thread: Broadcom BCM4311, Ubuntu 12.04 / 13.04

  1. #21
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Broadcom BCM4311, Ubuntu 12.04

    Quote Originally Posted by 16jedavis View Post
    i also have problems but on a inspirion 1545 and my rfkill list says
    user@user-Inspiron-1545:~$ rfkill list all
    0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
    1: dell-wifi: Wireless LAN
    Soft blocked: yes
    Hard blocked: yes

    what do i do
    Find out if you have dell-laptop or dell-wmi loaded:
    Code:
    lsmod
    Whichever on it is, unload it temporarily:
    Code:
    sudo modprobe -rf dell-laptop <---or -wmi
    sudo rfkill unblock all
    Does your wireless srping to life? If so, we'll make it permanent.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  2. #22
    Join Date
    Oct 2010
    Beans
    28

    Re: Broadcom BCM4311, Ubuntu 12.04

    Quote Originally Posted by chili555 View Post
    Find out if you have dell-laptop or dell-wmi loaded:
    Code:
    lsmod
    Whichever on it is, unload it temporarily:
    Code:
    sudo modprobe -rf dell-laptop <---or -wmi
    sudo rfkill unblock all
    Does your wireless srping to life? If so, we'll make it permanent.
    hey chili555 , I would be highly obliged if you throw light on my problem which is the same as of other members here i.e., can't get my wireless to work.

    I ran some commands that you listed here & they gave me the following results:

    chaitanya@CHAITANYA-PC:~$ lspci -nn | grep 0280
    0c:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11a/b/g [14e4:4312] (rev 01)
    chaitanya@CHAITANYA-PC:~$ rfkill list all
    0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
    chaitanya@CHAITANYA-PC:~$

  3. #23
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Broadcom BCM4311, Ubuntu 12.04

    Quote Originally Posted by chaitanya2106 View Post
    hey chili555 , I would be highly obliged if you throw light on my problem which is the same as of other members here i.e., can't get my wireless to work.

    I ran some commands that you listed here & they gave me the following results:

    chaitanya@CHAITANYA-PC:~$ lspci -nn | grep 0280
    0c:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11a/b/g [14e4:4312] (rev 01)
    chaitanya@CHAITANYA-PC:~$ rfkill list all
    0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
    chaitanya@CHAITANYA-PC:~$
    This device requires firmware and there is a bit of controversy about the best way to do it. You will be our test pilot! Please get a temporary wired ethernet connection, open a terminal and do:
    Code:
    sudo apt-get install linux-firmware-nonfree
    sudo modprobe -r b43 && sudo modprobe b43
    Any improvement?
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  4. #24
    Join Date
    Oct 2010
    Beans
    28

    Re: Broadcom BCM4311, Ubuntu 12.04

    Quote Originally Posted by chili555 View Post
    This device requires firmware and there is a bit of controversy about the best way to do it. You will be our test pilot! Please get a temporary wired ethernet connection, open a terminal and do:
    Code:
    sudo apt-get install linux-firmware-nonfree
    sudo modprobe -r b43 && sudo modprobe b43
    Any improvement?
    Yes, I do have a wired ehternet connection. I ran the commands & here's the result:

    chaitanya@CHAITANYA-PC:~$ sudo apt-get install linux-firmware-nonfree
    [sudo] password for chaitanya:
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    linux-firmware-nonfree is already the newest version.
    The following packages were automatically installed and are no longer required:
    language-pack-zh-hans language-pack-kde-en language-pack-kde-zh-hans
    language-pack-kde-en-base kde-l10n-engb kde-l10n-zhcn linux-headers-3.5.0-23
    language-pack-zh-hans-base firefox-locale-zh-hans
    linux-headers-3.5.0-23-generic language-pack-kde-zh-hans-base
    Use 'apt-get autoremove' to remove them.
    0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    chaitanya@CHAITANYA-PC:~$ sudo modprobe -r b43 && sudo modprobe b43
    WARNING: All config files need .conf: /etc/modprobe.d/blacklist, it will be ignored in a future release.
    WARNING: All config files need .conf: /etc/modprobe.d/blacklist, it will be ignored in a future release.




    It's been more than 15 minutes & the cursor is stuck there in the WARNING line.

  5. #25
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Broadcom BCM4311, Ubuntu 12.04

    WARNING: All config files need .conf: /etc/modprobe.d/blacklist, it will be ignored in a future release.
    This is symptomatic of a failed ndiswrapper installation. Let's check a few things:
    Code:
    ndiswrapper -l
    ls /etc/ndiswrapper
    cat /etc/modprobe.d/blacklist
    Thanks.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  6. #26
    Join Date
    Oct 2010
    Beans
    28

    Re: Broadcom BCM4311, Ubuntu 12.04

    Quote Originally Posted by chili555 View Post
    This is symptomatic of a failed ndiswrapper installation. Let's check a few things:
    Code:
    ndiswrapper -l
    ls /etc/ndiswrapper
    cat /etc/modprobe.d/blacklist
    Thanks.
    hey thanx again for your reply, sorry for taking a bit time. Here are the results:

    chaitanya@CHAITANYA-PC:~$ ndiswrapper -l
    chaitanya@CHAITANYA-PC:~$ ls /etc/ndiswrapper
    chaitanya@CHAITANYA-PC:~$ cat /etc/modprobe.d/blacklist
    blacklist bcm43xx
    chaitanya@CHAITANYA-PC:~$

  7. #27
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Broadcom BCM4311, Ubuntu 12.04

    chaitanya@CHAITANYA-PC:~$ cat /etc/modprobe.d/blacklist
    blacklist bcm43xx
    There is no such module:
    chili@Think410:~$ modinfo bcm43xx
    ERROR: modinfo: could not find module bcm43xx
    So you may as well remove the ineffective file:
    Code:
    sudo rm /etc/modprobe.d/blacklist
    Now let's unload and reload the driver and see if there are any informative messages in the log:
    Code:
    sudo modprobe -r b43 && sudo modprobe b43
    dmesg | grep b43
    Either your wireless will be working or dmesg will tell us why not.

    EDIT: I see you are getting excellent help from my friend Hadaka. Please continue with him.
    Last edited by chili555; March 13th, 2013 at 03:27 PM.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  8. #28
    Join Date
    Oct 2010
    Beans
    28

    Re: Broadcom BCM4311, Ubuntu 12.04

    Quote Originally Posted by chili555 View Post
    There is no such module:So you may as well remove the ineffective file:
    Code:
    sudo rm /etc/modprobe.d/blacklist
    Now let's unload and reload the driver and see if there are any informative messages in the log:
    Code:
    sudo modprobe -r b43 && sudo modprobe b43
    dmesg | grep b43
    Either your wireless will be working or dmesg will tell us why not.

    EDIT: I see you are getting excellent help from my friend Hadaka. Please continue with him.

    chaitanya@CHAITANYA-PC:~$ sudo rm /etc/modprobe.d/blacklist
    [sudo] password for chaitanya:
    chaitanya@CHAITANYA-PC:~$ sudo modprobe -r b43 && sudo modprobe b43



    It's stuck there.

  9. #29
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Broadcom BCM4311, Ubuntu 12.04

    Hadaka is your best resource.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  10. #30
    Join Date
    Mar 2013
    Beans
    2

    Re: Broadcom BCM4311, Ubuntu 12.04

    still no wireless

Page 3 of 10 FirstFirst 12345 ... LastLast

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
  •