Results 1 to 5 of 5

Thread: No wireless on my Acer 5520 w/Ubuntu 8.10

  1. #1
    Join Date
    Feb 2008
    Beans
    36

    No wireless on my Acer 5520 w/Ubuntu 8.10

    Hello all!

    After having no luck with getting wireless to work properly with Ubuntu 8.04, I was really having high hopes for 8.10, now that I've downloaded though, I don't have any wireless whatsoever! I have an Acer 5520 with a broadcom bcm4311 wirless card, and no matter which driver I enable in "hardware drivers", I can't seem to get wireless working, so please, can anybody help me?

  2. #2
    Join Date
    Nov 2008
    Beans
    1

    Re: No wireless on my Acer 5520 w/Ubuntu 8.10

    Hi there.

    I my self have a Acer Aspire 5021 with a Broadcom bcm4318 and Ubuntu 8.10 and have experience the same problem. But now i'm using the wireless to connect to the world.

    My solution to activate the wireless card is by using the following code:
    Code:
    echo 1 > /sys/devices/platform/acer-wmi/wireless
    And to make sure it's always activated when I start-up I added that line to the /etc/rc.local file, by opening a editor
    Code:
    sudo gedit /etc/rc.local
    so it's locks like this:
    Code:
    #!/bin/sh -e
    #
    # rc.local
    #
    # This script is executed at the end of each multiuser runlevel.
    # Make sure that the script will "exit 0" on success or any other
    # value on error.
    #
    # In order to enable or disable this script just change the execution
    # bits.
    #
    # By default this script does nothing.
    sudo echo 1 > /sys/devices/platform/acer-wmi/wireless
    exit 0
    I hope it helps you to.

  3. #3
    Join Date
    Feb 2008
    Beans
    36

    Smile Re: No wireless on my Acer 5520 w/Ubuntu 8.10

    Quote Originally Posted by ahlenius View Post
    Hi there.

    I my self have a Acer Aspire 5021 with a Broadcom bcm4318 and Ubuntu 8.10 and have experience the same problem. But now i'm using the wireless to connect to the world.

    My solution to activate the wireless card is by using the following code:
    Code:
    echo 1 > /sys/devices/platform/acer-wmi/wireless
    And to make sure it's always activated when I start-up I added that line to the /etc/rc.local file, by opening a editor
    Code:
    sudo gedit /etc/rc.local
    so it's locks like this:
    Code:
    #!/bin/sh -e
    #
    # rc.local
    #
    # This script is executed at the end of each multiuser runlevel.
    # Make sure that the script will "exit 0" on success or any other
    # value on error.
    #
    # In order to enable or disable this script just change the execution
    # bits.
    #
    # By default this script does nothing.
    sudo echo 1 > /sys/devices/platform/acer-wmi/wireless
    exit 0
    I hope it helps you to.


    Hi ahlenius! And thanks for trying to help me, after I ran those commands my wireless light lit up, although no access points showed up when I clicked the NetworkManager icon. Perhaps if I try a clean install of Intrepid Ibex it'll work, I've done quite a lot of tweaking, without any luck though.

    Thanks again!

  4. #4
    Join Date
    Feb 2009
    Beans
    2

    Re: No wireless on my Acer 5520 w/Ubuntu 8.10

    Quote Originally Posted by ahlenius View Post
    Hi there.

    I my self have a Acer Aspire 5021 with a Broadcom bcm4318 and Ubuntu 8.10 and have experience the same problem. But now i'm using the wireless to connect to the world.

    My solution to activate the wireless card is by using the following code:
    Code:
    echo 1 > /sys/devices/platform/acer-wmi/wireless
    And to make sure it's always activated when I start-up I added that line to the /etc/rc.local file, by opening a editor
    Code:
    sudo gedit /etc/rc.local
    so it's locks like this:
    Code:
    #!/bin/sh -e
    #
    # rc.local
    #
    # This script is executed at the end of each multiuser runlevel.
    # Make sure that the script will "exit 0" on success or any other
    # value on error.
    #
    # In order to enable or disable this script just change the execution
    # bits.
    #
    # By default this script does nothing.
    sudo echo 1 > /sys/devices/platform/acer-wmi/wireless
    exit 0
    I hope it helps you to.
    hey ahlenius,

    thanks a ton man.....me and my roomie had big trouble trying to activate wirless button and your post madeour life so easy.........3 cheers man...ta

  5. #5
    Join Date
    Dec 2008
    Location
    portugal
    Beans
    5
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: No wireless on my Acer 5520 w/Ubuntu 8.10

    Quote Originally Posted by ahlenius View Post
    Hi there.

    I my self have a Acer Aspire 5021 with a Broadcom bcm4318 and Ubuntu 8.10 and have experience the same problem. But now i'm using the wireless to connect to the world.

    My solution to activate the wireless card is by using the following code:
    Code:
    echo 1 > /sys/devices/platform/acer-wmi/wireless
    And to make sure it's always activated when I start-up I added that line to the /etc/rc.local file, by opening a editor
    Code:
    sudo gedit /etc/rc.local
    so it's locks like this:
    Code:
    #!/bin/sh -e
    #
    # rc.local
    #
    # This script is executed at the end of each multiuser runlevel.
    # Make sure that the script will "exit 0" on success or any other
    # value on error.
    #
    # In order to enable or disable this script just change the execution
    # bits.
    #
    # By default this script does nothing.
    sudo echo 1 > /sys/devices/platform/acer-wmi/wireless
    exit 0
    I hope it helps you to.

    thks, it worked perfectly for me

Tags for this Thread

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
  •