Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

ACER NETBOOK HELP REQUIRED ASAP. Linux

  • 13-12-2009 6:06pm
    #1
    Registered Users, Registered Users 2 Posts: 829 ✭✭✭


    ACER NETBOOK HELP REQUIRED ASAP.
    Hi guys looking to pick your brains. My daughter has a Acer netbook got it on a deal from Eircom last year. Basically it won't connect to the internet for me, it did before no problem and had to get my router replaced as it was faulty. It runs on a linux system and when i double click on Network connections nothing opens, its as if the file is empty. There is no flashing screen in the bottom toolbar any more either. I get a sneaky feeling she may have be messing around and has deleted a file. As its a netbook it came with no disks or anything, to like reinstall stuff. Just wondering does linux have the windows equivelent of system restore or something.

    Any help greatly appreciated as she loves the thing and is lost without it.
    Posted over in laptops too to try get to the right person who can help cheers.


Comments

  • Registered Users, Registered Users 2 Posts: 339 ✭✭duffman85


    Try this:

    press ALT + F2
    A window will appear with a textbox
    type "nm-applet" in to the textbox and press enter/click ok


    ********************************************************


    If this does not work press ALT + F2 again
    type "terminal" into the textbox and press enter
    A terminal window(a black text only window like DOS/command prompt in Windows) will open
    type ifconfig
    You should get something like this:
    [username@localhost ~]$ ifconfig
    eth0      Link encap:Ethernet  HWaddr 00:0E:A6:84:CD:D6
              inet addr:192.168.1.100  Bcast:192.168.1.255  Mask:255.255.255.0
              inet6 addr: fe80::20e:a6ff:fe84:cdd6/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:30774 errors:0 dropped:0 overruns:0 frame:0
              TX packets:20737 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:33591322 (32.0 MiB)  TX bytes:2244362 (2.1 MiB)
              Interrupt:23 Base address:0x4000
    
    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:4114 errors:0 dropped:0 overruns:0 frame:0
              TX packets:4114 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:1954748 (1.8 MiB)  TX bytes:1954748 (1.8 MiB)
    
    for the wifi connection, there should be something like "wlan0"

    if there is type
    ifup wlan0
    


  • Registered Users, Registered Users 2 Posts: 829 ✭✭✭pokerface_me


    Hi i did everything and the only thing i see is wifi0-00 if that means anything to you. The ifup wlan0 command doesnt do anything but says cannot be found


  • Registered Users, Registered Users 2 Posts: 339 ✭✭duffman85


    if wifi0-00 has text similar to the text to the right of "eth0" in my previous post then wifi0-00 is the name of your wireless card

    As before all these commands are typed in the terminal.

    You can try typing
    ifdown wifi0-00
    
    and then
    ifup wifi0-00
    
    If nothing happens you might have to be "root"(the Administrator user) by typing "su" or "su -"
    typing "ifconfig" to see the network configuration information.
    The line highlighted in bold is the important it should say "UP"

    "ifdown wifi0-00" will stop/turn off the network card/wifi
    "ifup wifi0-00" will turn it on again
    This is what I have done below.
    1. Become root by typing "su -" and entering the root password(this may be blank on the Acer (I don't know).
    2. typed ifconfig to show the configuration information
    3. typed ifdown eth0 to turn off eth0(the wired network card)
    4. typed ifconfig again to show that the entry for eth0 is now gone
    5. typed ifup eth0 to turn eth0 back on
    6. typed exit to go back to being a normal (non-administrator user)
    [james@localhost ~]$ su -
    Password: 
    [root@localhost ~]# ifconfig
    eth0      Link encap:Ethernet  HWaddr 08:00:27:D5:7B:22  
              inet addr:10.0.2.15  Bcast:10.0.2.255  Mask:255.255.255.0
              inet6 addr: fe80::a00:27ff:fed5:7b22/64 Scope:Link
              [B]UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1[/B]
              RX packets:80 errors:0 dropped:0 overruns:0 frame:0
              TX packets:145 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:17481 (17.0 KiB)  TX bytes:22665 (22.1 KiB)
              Interrupt:11 Base address:0xd020 
    
    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:1186 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1186 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:2010716 (1.9 MiB)  TX bytes:2010716 (1.9 MiB)
    
    [root@localhost ~]# ifdown eth0
    [root@localhost ~]# ifconfig
    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:1186 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1186 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:2010716 (1.9 MiB)  TX bytes:2010716 (1.9 MiB)
    
    [root@localhost ~]# ifup eth0
    
    Determining IP information for eth0... done.
    [root@localhost ~]# exit
    logout
    
    [james@localhost ~]$ 
    
    
    If you get no joy try here:
    http://www.aspireoneuser.com


  • Registered Users, Registered Users 2 Posts: 590 ✭✭✭bman


    Also, are you sure your router is working and is broadcasting an essid? Have you other wireless computers in the house and are they able to connect to the router wirelessly?


  • Moderators, Recreation & Hobbies Moderators, Science, Health & Environment Moderators, Technology & Internet Moderators Posts: 94,296 Mod ✭✭✭✭Capt'n Midnight


    LINPUS is the OS on them

    don't forget to check the wifi switch too ;)

    can't find the picture guide to add new wifi connection , it's the third one down in the list IIRC


  • Advertisement
Advertisement