Results 1 to 7 of 7

Thread: Getting "Available version: 6.20.155.1+bdcom-0ubuntu0.0.1" to work

  1. #1
    Join Date
    Nov 2008
    Beans
    88

    Getting "Available version: 6.20.155.1+bdcom-0ubuntu0.0.1" to work

    I tried installing this driver and it messed up my wireless and had to downgrade.
    plzfixmydriver.jpg
    What do I have to do to get it to work, will it work?

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

    Re: Getting "Available version: 6.20.155.1+bdcom-0ubuntu0.0.1" to work

    it messed up my wireless
    In what way? Does your wireless no longer work? Does it try to connect and it never authenticates? Does it connect but it's slow? Does it cause green smoke to pour out of your keyboard? Please open a terminal and run and post:
    Code:
    lspci -nn -d 14e4:
    sudo dpkg -s linux-headers-`uname -r`
    Those tickmarks are on the left side of my US keyboard on the same key with ~.

    Are you experiencing a problem that you hoped to solve by installing a later driver version? What, specifically, is it?
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  3. #3
    Join Date
    Nov 2008
    Beans
    88

    Re: Getting "Available version: 6.20.155.1+bdcom-0ubuntu0.0.1" to work

    My mistake. By recollection, as the problem has been fixed by the downgrade, it would not connect to any networks; they were visible though.

    Code:
    default@default-laptop:~$ lspci -nn -d 14e4:
    03:00.0 Network controller [0280]: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller [14e4:4727] (rev 01)
    default@default-laptop:~$ sudo dpkg -s linux-headers-`uname -r`
    [sudo] password for default: 
    Package: linux-headers-3.2.0-39-generic
    Status: install ok installed
    Priority: optional
    Section: devel
    Installed-Size: 11008
    Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com>
    Architecture: amd64
    Source: linux
    Version: 3.2.0-39.62
    Provides: linux-headers, linux-headers-3.0
    Depends: linux-headers-3.2.0-39, libc6 (>= 2.14)
    Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP
     This package provides kernel header files for version 3.2.0 on
     64 bit x86 SMP.
     .
     This is for sites that want the latest kernel headers.  Please read
     /usr/share/doc/linux-headers-3.2.0-39/debian.README.gz for details.
    default@default-laptop:~$
    Will it work or should I just wait for the next update?

    I'm just trying to make sure my computer is up to date. Trying to prevent problems.
    Last edited by WaNaBePi; April 5th, 2013 at 12:27 AM.

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

    Re: Getting "Available version: 6.20.155.1+bdcom-0ubuntu0.0.1" to work

    Quote Originally Posted by WaNaBePi View Post
    By recollection, as the problem has been fixed by the downgrade, it would not connect to any networks; they were visible though.
    If the problem was fixed by downgrading the bcmwl-kernel-source package, I'd leave well enough alone. If you are a tweak-it-till-it breaks kind of person and MUST get the later version to work, no matter what, I'll try to help. Tell me what you prefer.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  5. #5
    Join Date
    Nov 2008
    Beans
    88

    Re: Getting "Available version: 6.20.155.1+bdcom-0ubuntu0.0.1" to work

    I am a a "tweak-it-till-it breaks kind of person" however I'll leave it alone if you don't think the upgrade makes a big difference. I did notice at the end of the upgrade changes tab it reads
    "Version 5.100.82.38+bdcom-0ubuntu6.1:

    *debian/bcmwl-kernel-source.postinst:
    -black list brcmfmac, brcmsmac and bcma so that they don't
    conflict with the closed driver (LP:#873117)"


    I Don't fully comprehend the directions here.

    So it may just be a "simple" black list, only I'm too much of a newb to do that.

    All that in mind what do you think. Should the upgrade be done/attempted?

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

    Re: Getting "Available version: 6.20.155.1+bdcom-0ubuntu0.0.1" to work

    So it may just be a "simple" black list, only I'm too much of a newb to do that.
    If that's all it is, I wouldn't waste my CPU cycles on it. Amending a blacklist file is quite easy. The bcmwl-kernel-source package automatically blacklists possibly conflicting drivers by adding a new file: /etc/modprobe.d/blacklist-bcm43.conf. On my machine, its contents are:
    Code:
    # Warning: This file is autogenerated by bcmwl. All changes to this file will be lost.
    blacklist b43
    blacklist b43legacy
    blacklist ssb
    blacklist bcm43xx
    blacklist brcm80211
    blacklist brcmfmac
    blacklist brcmsmac
    blacklist bcma
    As you can see, the changes you listed above are already included. Check yours:
    Code:
    cat /etc/modprobe.d/blacklist-bcm43.conf
    If those additions are not present, simply add them:
    Code:
    gksudo gedit /etc/modprobe.d/blacklist-bcm43.conf
    The text editor will open the file ready for changes; add them if not already present:
    Code:
    # Warning: This file is autogenerated by bcmwl. All changes to this file will be lost.
    blacklist b43
    blacklist b43legacy
    blacklist ssb
    blacklist bcm43xx
    blacklist brcm80211
    blacklist brcmfmac
    blacklist brcmsmac
    blacklist bcma
    Proofread, save and close the text editor.

    Now, since your wireless works perfectly well, I doubt the blacklists are pertinent to your exact device; otherwise, you would have been complaining that your wireless was not working correctly. However, if you are, like me, a bit OCD, gedit and have fun!
    All that in mind what do you think. Should the upgrade be done/attempted?
    If the intent is to make your wireless run a bit better, then no. If the intent is to learn and conquer a problem, then sure, let's go ahead.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  7. #7
    Join Date
    Nov 2008
    Beans
    88

    Re: Getting "Available version: 6.20.155.1+bdcom-0ubuntu0.0.1" to work

    Well that was easy. Works great. Had to restart to get it to run after the install though, but that's to be expected.

    Thank you very much chili555.

    SOLVED.

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
  •