Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Getting my wireless up and working

  1. #1
    Join Date
    Apr 2009
    Beans
    4

    Getting my wireless up and working

    Hi there - very new to linux and having sorted out a lot a problems since I started installing Ubuntu 8.10 on my Acer Aspire One I am flagging.

    I am following the installation documentation at

    https://help.ubuntu.com/community/AspireOne

    I have got as far as You may need to append ath_pci to/etc/modules:

    I have not got the faintest idea how to do it or the next one to stop the workeless going to sleep on suspend function.

    Please I have got so far (its taken me 5 days) how do I add these scripts?

    Hoping you can help me

    Ben

  2. #2
    Join Date
    Oct 2008
    Location
    Computer:///
    Beans
    280
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Getting my wireless up and working

    Please see my HOWTO here: http://ubuntuforums.org/showthread.php?t=1022698

    I believe you would be after the "modprobe" command at the end

    Then restart.

    edit: if you have done this, then run:
    Code:
    sudo gedit /etc/modules
    And add ath_pci on the end like it says.

    Then:
    Code:
    sudo gedit /etc/pm/sleep.d/00wireless
    Paste into the document this:
    Code:
    #
    # Restart WiFi interface after suspension
    #
    
    case "$1" in
            resume|thaw)
                    /sbin/ifconfig wifi0 down
                    /sbin/ifconfig wifi0 up
            ;;
            *)
            ;;
    esac
    
    exit $?
    Then run:
    Code:
    sudo chmod u+x /etc/pm/sleep.d/00wireless
    And I wouldn't do the LED lights one, it gets really annoying and isn't worth it.
    Last edited by Jakey_TheSnake; April 15th, 2009 at 02:26 PM.
    Asus G73JH - Intel i7 720QM @ 1.6GHz (Turbo: 2.8GHz), 6MB L2 cache + ATI Mobility Radeon HD 5870 (1GB GDDR5) + 6GB DDR3 RAM + 500GB SATA HDD @ 7200rpm + 1TB External HDD. Ubuntu 10.04 (x64).
    And on the seventh day, he made linux.

  3. #3
    Join Date
    Aug 2008
    Location
    Washington DC
    Beans
    2,186
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Getting my wireless up and working

    Hi Ben -- hang in there.

    open a terminal and
    append the ath_pci to /etc/modules like so:

    Code:
    sudo echo ath_pci >> /etc/modules
    in a terminal --
    to stop on it on suspend:

    type

    Code:
    sudo cat >> /etc/pm/sleep.d/00wireless
    copy the following code segment:

    Code:
    #
    # Restart WiFi interface after suspension
    #
    
    case "$1" in
            resume|thaw)
                    /sbin/ifconfig wifi0 down
                    /sbin/ifconfig wifi0 up
            ;;
            *)
            ;;
    esac
    
    exit $?
    and paste it into the terminal.

    Then type "ctrl+D"

    then do:
    Code:
    sudo chmod u+x /etc/pm/sleep.d/00wireless

  4. #4
    Join Date
    Jun 2006
    Location
    Scotland
    Beans
    811

    Re: Getting my wireless up and working

    Notice that the instruction
    You may need to append ath_pci to/etc/modules: has a colon on the end
    The bit is the box that follows is the ath_pci bit. What it means is you may need to add the ath_pci bit to /etc/modules. Open /etc/modules with this command
    gksudo gedit /etc/modules
    . Copy and paste the ath_pci bit. Save. Exit.

  5. #5
    Join Date
    Apr 2009
    Beans
    4

    Re: Getting my wireless up and working

    Hi there again

    When I try to do anything I get permission denied returned in turminal - I take it this might be because I am not in at roote level???????

    Ben

  6. #6
    Join Date
    Jan 2008
    Location
    Manchester UK
    Beans
    13,607
    Distro
    Lubuntu

    Re: Getting my wireless up and working

    Did you use gksudo then type your password?

    Copy and paste this into your terminal.

    Code:
    gksudo gedit /etc/modules
    then type your password.

    You will see a file that looks like this

    Code:
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file contains the names of kernel modules that should be loaded
    # at boot time, one per line. Lines beginning with "#" are ignored.
    
    fuse
    lp
    You want it to look like this
    Code:
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file contains the names of kernel modules that should be loaded
    # at boot time, one per line. Lines beginning with "#" are ignored.
    
    fuse
    lp
    ath_pci
    Save it
    Close
    Reboot
    Last edited by nothingspecial; April 16th, 2009 at 09:46 AM. Reason: spelling

  7. #7
    Join Date
    Oct 2008
    Location
    Computer:///
    Beans
    280
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Getting my wireless up and working

    If you copied and pasted my commands exactly from the code box, and then entered your password you would not be getting "access denied".

    Please note that the password prompt is blank, and you will not see what you are typing, but rest assured it _is_ actually typing.
    Asus G73JH - Intel i7 720QM @ 1.6GHz (Turbo: 2.8GHz), 6MB L2 cache + ATI Mobility Radeon HD 5870 (1GB GDDR5) + 6GB DDR3 RAM + 500GB SATA HDD @ 7200rpm + 1TB External HDD. Ubuntu 10.04 (x64).
    And on the seventh day, he made linux.

  8. #8
    Join Date
    Apr 2009
    Beans
    4

    Re: Getting my wireless up and working

    Hi there - thanks for all your help and I have been able to run the changes and script - however, - even when I reboot I cannot get wireless connection.

    I had it oriiginally 2 days ago - the connection is listed on connection but I cannot connect - any suggestions - I am turning to hysterical laghter now - if i don't laugh then I would cry - I am learning a lot but I want to use my netbook on wireless

    Regard Ben

  9. #9
    Join Date
    Jan 2008
    Location
    Manchester UK
    Beans
    13,607
    Distro
    Lubuntu

    Re: Getting my wireless up and working

    There has been a recent kernel update.

    This means that the madwifi drivers you installed earlier wont work anymore because they are attached to the previous kernel.

    If you still have the madwifi directrory the cd into it. If it`s in your home directory then

    Code:
    cd madwifi-hal-0.10.5.6*/
    Then
    Code:
    make clean
    Code:
    sudo make install
    If you`ve deleted it you`re going to have to the whole thing again. Unless it`s still in your trash.
    Last edited by nothingspecial; April 16th, 2009 at 10:45 AM.

  10. #10
    Join Date
    Apr 2009
    Beans
    4

    Re: Getting my wireless up and working

    Thank you thank you thank you

    I am now on wireless!

    Sincere thanks for all of your help - you never know I might become an expert - eventually!!!!

    Ben

Page 1 of 2 12 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
  •