Acer aspire one install help.

Hay guys. I'm all very new to arch Linux never used it be-for I've just been using openSUSE and Ubuntu. I see that arch Linux is very light weight XD and I'm wanting to put flux-box on it.
Theres my problem iv got xorg working i can load up in to that. but flux-box crashers every-time i try start it.
and when i startx then run flux-box, it just exits out of xorg????

Good luck with the new setup.  I've got an AOD150 running Arch/WinXP and it's great.   I just use the stock kernel, but once you get your feet wet you might want to check out the "one" kernel, optimized specifically for the AAO--a quick search on the forums here will get you to the right place.
Last edited by thayer (2009-05-24 04:09:26)

Similar Messages

  • How do I install the latest version of Firefox on my Acer Aspire One running Linpus Linux Lite?

    I have an Acer Aspire One Netbook. It runs "Linpus Linux Lite" OS. It came with Forefox 2 installed. I have searched the web for advice on how to upgrade to Firefox 3.5.
    I had a go at it, I have now lost Firefox 2, but failed to install a later version.
    Can someone tell me how t0 get either Firefox 2 back, or better still, unstall Firefox 3.5?
    I should say that I'm a novice so I need really basic instructions.
    If this plea for help doesn't work, I'll take my netbook to my local PC chap & ask for Windows to be installed on it!
    Thanks.

    See here:
    http://linuxforums.org.uk/netbooks/install-firefox-5-on-an-acer-aspire-one-running-linpus-lite-linux/
    for instructions on how to install Firefox 5 on an Acer Aspire One running Linpus Lite Linux.

  • [HOWTO] Installing Arch Linux stable release on Acer Aspire One 522

    [This is a work on progress and my first howto ever]
    These steps will teach you how to install ArchLinux x64 stable release (currently 2010.05) on Acer Aspire One 522 from an existing ArchLinux (your desktop computer)
    As you need a 2.6.37+ kernel to make networking work on the AO522, installing stable release as is won't work.
    This Howto borns with the intention to address this problem.
    You need to be familiarized with Linux internals to follow this howto.
    (Expect this howto to become useless with new stable releases of ArchLinux.)
    Remember to make a backup of your Windows 7 Starter system before installing ArchLinux.
    I did a full raw copy of the harddisk by using systemrescuecd, an external harddisk and dd utility:
    Just boot with systemrescuecd
    Mount your external harddisk on /mnt/floppy for example
    Clone harddisk with: dd if=/dev/sda |gzip -c > /mnt/floppy/ao522.img
    This process took me a lot of time since my external harddisk is USB-1 (almost an entire evening)
    Result image was about 22GB size
    This image will restore partition table, boot sector and all data if things go wrong.
    I followed some of the steps from this guide: https://wiki.archlinux.org/index.php/In … ting_Linux
    If you have some Gentoo Linux experience you will find those steps really familiar.
    You will need 2 USB pendrives or similar storage options.
    One is needed to boot into your netbook, and the other to store our custom archlinux build.
    Making an updated ArchLinux system
    1) Make a local dir on your existing linux system
    # mkdir ./newarch
    2) Install pacman database on it
    # pacman -Sy -r ./newarch
    3) Install base system
    # pacman -S base -r ./newarch
    4) Let's chroot inside
    # cp /etc/resolv.conf ./newarch/etc/
    # cp /etc/pacman.d/mirrorlist ./newarch/etc/pacman.d
    # mount -t proc proc ./newarch/proc
    # mount -t sysfs sys ./newarch/sys
    # mount -o bind /dev ./newarch/dev
    # chroot ./newarch /bin/bash
    5) Edit configuration files
    # nano -w /etc/rc.conf
    # nano -w /etc/hosts
    # nano -w /etc/mkinitcpio.conf
    Forget /etc/fstab for now since you don't know what partitions to use yet
    6) Generate kernel image
    # mkinitcpio -p kernel26
    7) Generate locales
    # nano -w /etc/locale.gen
    # locale-gen
    8) Make a tarball with our custom ArchLinux
    # exit
    # umount ./newarch/proc
    # umount ./newarch/dev
    # umount ./newarch/sys
    # tar -cvpf newarch.tar ./newarch
    9) Copy this tarball to an USB pendrive or external harddisk
    10) Boot your netbook with a Linux bootable USB stick (I used systemrescuecd, and remember to pick the x64 bit kernel at grub screen)
    You can use any linux distribution with usb bootable options. I suppose ArchLinux works too
    To install SystemRescueCD on an USB stick follow this tutorial -> SystemRescueCD on usb stick
    Insert the usb stick on your netbook, switch on, hit F2 to enter BIOS menu, and choose to boot from USB as first option. Save and Exit.
    You should be booting into SystemRescueCD without any problem.
    After initialization you will end in a root prompt.
    11) Let's partition the disk
    You will find 3 partitions if this is your first time:
    /dev/sda1 2048 29362175 14680064 27 Hidden NTFS WinRE
    /dev/sda2 * 29362176 29566975 102400 7 HPFS/NTFS/exFAT
    /dev/sda3 29566976 488397167 229312696 7 HPFS/NTFS/exFAT
    My recomendation is to leave sda1 and sda2 intact, as they have the recovery information to restore Windows 7 Starter
    You have plenty of space with sda3, about 230G.
    So run fdisk/cfdisk and delete /dev/sda3
    Now create a 100M partition for boot
    Now create a Extended partition with all the space left
    Now create a 1GB logical partition for swap
    Now create a 10-15 GB  logical partition for root system
    And finally a logical partition for our home partition with all space left
    Your partition table should look like this:
    /dev/sda1 2048 29362175 14680064 27 Hidden NTFS WinRE
    /dev/sda2 * 29362176 29566975 102400 7 HPFS/NTFS/exFAT
    /dev/sda3 29566976 29771775 102400 83 Linux
    /dev/sda4 29771776 488397167 229312696 5 Extended
    /dev/sda5 29773824 31821823 1024000 83 Linux
    /dev/sda6 31823872 63281151 15728640 83 Linux
    /dev/sda7 63283200 488397167 212556984 83 Linux
    12) Create filesystems
    I choosed ext2 for boot, and reiserfs for root and home partitions.
    # mke2fs /dev/sda3
    # mkreiserfs /dev/sda6
    # mkreiserfs /dev/sda7
    # mkswap /dev/sda5
    13) Mount partitions
    # mkdir arch
    # mount /dev/sda6 arch
    # mkdir arch/boot
    # mount /dev/sda3 arch/boot
    # mkdir arch/home
    # mount /dev/sda7 arch/home
    14) Copy our custom ArchLinux build on it
    # mount /dev/sdb1 /mnt/floppy (for example)
    # cd arch
    # tar -xvpf /mnt/flopy/newarch.tar
    15) Configure /etc/fstab
    Mine is as follows:
    devpts /dev/pts devpts defaults 0 0
    shm /dev/shm tmpfs nodev,nosuid 0 0
    /dev/sda3 /boot ext2 defaults 0 1
    /dev/sda6 / reiserfs defaults 0 1
    /dev/sda7 /home reiserfs defaults 0 1
    /dev/sda5 swap swap defaults 0 0
    16) Chroot in your new system
    # mount -t proc proc ./proc
    # mount -t sysfs sys ./sys
    # mount -o bind /dev ./dev
    # chroot ./ /bin/bash
    17) Install grub
    # grub-install
    Edit /boot/grub/menu.lst to suit your needs
    Mine looks like this:
    timeout 5
    default 0
    color light-blue/black light-cyan/blue
    title Arch Linux
    root (hd0,2)
    kernel /vmlinuz26 root=/dev/sda6 ro
    initrd /kernel26.img
    title Arch Linux Fallback
    root (hd0,2)
    kernel /vmlinuz26 root=/dev/sda6 ro
    initrd /kernel26-fallback.img
    title Windows 7 Recovery
    rootnoverify (hd0,0)
    makeactive
    chainloader +1
    As you see, you can restore Windows 7 Starter from Grub.
    18) Change root password
    # passwd
    19) Add a regular  user account
    # useradd -G video,audio,users -m username
    # passwd username
    20) You're done!
    # exit
    # cd ..
    # umount ./arch/proc
    # umount ./arch/dev
    # umount ./arch/sys
    # umount ./arch/boot
    # umount ./arch/
    # reboot
    Remove the usb stick from your netbook.
    If all went ok, you will be inside your new stable and updated ArchLinux system
    Next post is reserved for software configurations specific to the Acer Aspire One 522
    Last edited by tigrezno (2011-04-20 12:22:38)

    Using acpid to achieve the following:
    - Change screen brightness when operating in battery mode
    - Power off when the power button is pressed
    - Suspend when the lid is down
    - Reduce CPU frequency speed to maximize battery usage
    Remember that system suspend is only supported by ati free driver xf86-video-ati
    1) Install acpid daemon and cpufrequtils
    # pacman -S apcid cpufrequtils
    2) edit acpid handler script
    # nano -w /etc/acpi/handler.sh
    Change the following section:
    ac_adapter)
    case "$2" in
    AC)
    case "$4" in
    00000000)
    echo -n $minspeed >$setspeed
    #/etc/laptop-mode/laptop-mode start
    00000001)
    echo -n $maxspeed >$setspeed
    #/etc/laptop-mode/laptop-mode stop
    esac
    *) logger "ACPI action undefined: $2" ;;
    esac
    for:
    ac_adapter)
    case "$2" in
    ACAD)
    case "$4" in
    00000000)
    echo 3 > /sys/devices/virtual/backlight/acpi_video0/brightness
    cpufreq-set -c 0 -f 800Mhz
    cpufreq-set -c 1 -f 800Mhz
    00000001)
    echo 9 > /sys/devices/virtual/backlight/acpi_video0/brightness
    cpufreq-set -c 0 -f 1000Mhz
    cpufreq-set -c 1 -f 1000Mhz
    esac
    *) logger "ACPI action undefined: $2" ;;
    esac
    Make sure you changed AC) for ACAD)
    Now change this other section:
    button/power)
    #echo "PowerButton pressed!">/dev/tty5
    case "$2" in
    PWRF) logger "PowerButton pressed: $2" ;;
    *) logger "ACPI action undefined: $2" ;;
    esac
    with:
    button/power)
    #echo "PowerButton pressed!">/dev/tty5
    case "$2" in
    PWRF) poweroff ;;
    *) logger "ACPI action undefined: $2" ;;
    esac
    Change:
    button/lid)
    #echo "LID switched!">/dev/tty5
    logger "ACPI group/action undefined: $1 / $2"
    for:
    button/lid)
    pm-suspend && /etc/rc.d/network restart
    logger "ACPI group/action undefined: $1 / $2"
    Network restart is used because wlan0 will disconnect from AP after some time. You can try using iwconfig wlan0 essid <ap> key <key> instead of the network script, but haven't tested it myself.
    3) Start acpid and load modules
    # modprobe powernow-k8
    # /etc/rc.d/acpid start
    Add "acpid" to DAEMONS in /etc/rc.conf to start on boot
    Add "powernow-k8" to the modules sections on /etc/rc.conf to load at boot
    Stopping system freezes due to ethernet driver
    The only way people have found to avoid freezes is by blacklisting atheros kernel drivers.
    To do it at boot just edit /etc/rc.conf and change the MODULES line as this:
    MODULES=(!ath9k !atl1c)
    Reboot and you're done, but remember to not press the Wifi key, because it can freeze your system.
    Correctly starting wireless at boot
    I've found that standard scripts wont load properly my wireless lan. It gave an error telling you to use the WIRELESS_TIMEOUT variable and such.
    To solve this, edit /etc/rc.d/network script and change the wi_up function by adding a second iwconfig command like this:
    wi_up()
    eval iwcfg="\$wlan_${1}"
    [[ ! $iwcfg ]] && return 0
    /usr/sbin/iwconfig $iwcfg
    [[ $WIRELESS_TIMEOUT ]] || WIRELESS_TIMEOUT=2
    sleep $WIRELESS_TIMEOUT
    /usr/sbin/iwconfig $iwcfg
    bssid=$(iwgetid $1 -ra)
    It will do the trick and will start at boot correctly. This is not a solution but a fix.
    Adjust Touchpad to disable false taps
    What I did here is defining an area to be ignored. This area are 3 rectangles on top, left and right of the touchpad.
    This means you can write and press space without having the cursor click out of the window and such.
    # synclient AreaLeftEdge=150
    # synclient AreaRightEdge=1300
    # synclient AreaTopEdge=300
    Also, add it to your /etc/X11/xorg.conf.d/10-evdev.conf:
    Section "InputClass"
    Identifier "evdev touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    Option "AreaTopEdge" "300"
    Option "AreaLeftEdge" "150"
    Option "AreaRightEdge" "1300"
    EndSection
    You can play with those values. They just work for me.
    Last edited by tigrezno (2011-04-23 13:49:48)

  • Can't boot Arch from USB on Acer Aspire One...

    Hi All,
    New to the forums, relatively new to Linux. I've tried several distros including #!, U/K/Xubuntu, Mint, Kuki, Puppy and Wolvix. However none of them, except maybe Mint, have played very nicely with my Acer Aspire One netbook. Even Kuki was a bit of a disaster, though I liked the Midori browser, first time I'd used it was under Kuki.
    Intro aside, I want to try Arch. I am not scared of a bit of hands-on work via CLI, although am certainly no expert when it comes to CLI & Linux!
    The problem is, I created a USB install for the latest 32bit version of Arch using Unetbootin (I tried both under Windows and Linux, creating USB live sticks with both). However when I try to boot from USB, all goes well until just after a message during the boot process appears. I forget off the top of my head what the error message says, though it appears after successfully waiting 30 seconds to discover a SCSI drive (or something along those lines).
    The error has nothing to do with the drive, it's related to the step in the boot process that comes after that. Whatever the message is (I'm at work so cannot access logs or anything right now) it ends up asking me to resolve from a CLI prompt, which then leaves me with a prompt dialog, or to restart and try again.
    Nothing seems to work so I am not sure what I am doing wrong or if it might be a bug with Unetbootin or a bug with the latest version of Arch? Or simply a good old fashioned ID10T error?
    Any help would be greatly appreciated. Thanks!

    Thanks! I'll mark this as an ID10T error for now then. I'll give the USB install image a try tonight. On a side note, does Arch come with Skype pre-installed and if not, is it relatively simple to install a la the *.deb package install?

  • Firefox Slow Even When Offline on Acer Aspire One ao751h-1145

    I have a 2gb RAM, 1.33 Ghz Intel Atom CPU Z520, and a fresh install of Windows 7 Ultimate on my Acer Aspire One ao751h-1145. I have no viruses and no programs running in the background. I've installed and uninstalled various versions of Firefox (4, 11, 12) and even upon a fresh install before I edit preferences, bookmarks, or add-ons, the PROGRAM ITSELF is super slow. It isn't using any more RAM or processer speed that it should, however. What it does: Menus are slow to open, scrolling is jumpy, and switching from tab to tab takes like 2 seconds. Internet Explorer 8 works just fine, as do all other programs on the computer. Also, it works fine in Safe Mode. I can't find anything regarding this issue online. Help!

    Thanks for reply. But, drivers are up to date. However, I found on this page (https://support.mozilla.org/en-US/kb/how-do-i-upgrade-my-graphics-drivers) that I might want to disable hardware acceleration. I did that through the options menu and Firefox is "usable," but still not what I'm used to on other computers and still not as fast as IE on the same computer. Since turning of the hardware acceleration helped, what else can I do along the same lines to speed it up more? I know a 1.33GHz processor is plenty fast enough to run only firefox by itself. The computer I'm on now (my non-netbook) runs at 700MHz when on batteries and has no performance issues. I hope I can get it because I don't want to use another browser! :(

  • KDE 4.4.0 crashes when logging in on Acer Aspire One

    Hello,
    I just made an ArchLinux fresh installation on my Acer Aspire One, A1-ZG5. This is my problem: when I log in to KDE, the splash screen comes and then screen freezes. There is one gray window in the top of the screen that just flashes, no windows nor plasma can be seen. I have installed other KDE distros in the same netbook and worked well. I had had the same problem once, when I installed KDE 4.3.1, and never could fix it... KDE seems to be working like in the background; config files are still being created with the frozen screen...any ideas?...Thanks for your help!...:rolleyes:

    is your disk full?
    if not, try to switch off the services, remone network-manager plasmoids, and try again

  • My Acer Aspire One (Linpus lite) has downloaded firefox 4 but I can't open it!

    My firefox browser informed me automatically that there was a more recent version and I agreed to install it. Since then whenever I click on the icon the timer spiral operates for a second then nothing happens.
    Could sort this in windows but the Acer One makes accessing these sorts of things complicated for non-linux aware people - any help gratefully received!

    If your AA1 is still behaving properly (except for Firefox) see here:
    http://linuxforums.org.uk/netbooks/install-firefox-4-on-an-acer-aspire-one-running-linpus-lite-linux/

  • Unlocking operating system on Acer Aspire One Z65, AOA-1447 running XP Home Ed.

    Hi, I have an Acer Aspire One Z65, AOA-1447, running Windows XP Home Edition. Is there a way (such as a key?) to unlock the operating system so I can download a different browser?
    Thanks!

    Hi Karatekidmonkey, Yes, the Netbook came with XP Home Edition pre-installed. Apparently there was a free trial period for using Internet Explorer that must have expired long ago (the Netbook hadn't been used in a long time until just recently. I tried to access the Internet on it to download a new browser but it won't go to the webpage needed. It just sort of freezes up. I'm trying to find a way to "open" the OS so it will allow me to access the Internet to download a free browser. Since XP is no longer supported, I don't think MS tech support would be able to help me with that. Any suggestions?

  • [SOLVED] Acer Aspire One D250 LAN not detected.

    Hi guys,
    Cant seem to find anyone on the net that has the same problem as me, but here it goes.
    I have a Acer Aspire One D250, Id really like to run linux on it. There are dozens of posts on the web explaining you need to install the drivers from the Atheros site because the output of lspci is wrong.
    Well, the problem that i am having with Arch is that lspci doesnt even show my network card, and as soon as i boot, the light on the physical card turns on, but never goes off (almost like it hangs...)
    Ive included the output of Arch's lspci where its not visible, and the output of the ubuntu live netbook remix where it is visible just as the wrong name.
    Its almost like arch wants to load the wrong driver and then the card just freezes.... but i dont know, im not a fiull blown linux expert...
    Hope someone can help me because its driving me crazy.
    This is the output from the arch lspci:
    # lspci
    00:00.0 Host bridge: Intel Corporation Mobile 945GME Express Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
    00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
    00:1c.3 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)
    00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
    00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
    00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 02)
    00:1f.2 SATA controller: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA AHCI Controller (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)
    01:00.0 Ethernet controller: Atheros Communications Inc. AR5001 Wireless Network Adapter (rev 01)
    This is the output from the ubuntu netbook remix lspci:
    lspci
    00:00.0 Host bridge: Intel Corporation Mobile 945GME Express Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
    00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
    00:1c.3 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)
    00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
    00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
    00:1f.2 SATA controller: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA AHCI Controller (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)
    01:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
    03:00.0 Ethernet controller: Attansic Technology Corp. Device 1062 (rev c0)
    Last edited by kirothi (2009-10-09 08:40:23)

    Kernel Installed from the testing repo, now im getting the following build errors:
    # make install
    make -C /lib/modules/2.6.31-ARCH/build SUBDIRS=/root/atheros_ln_driver/src modules
    make[1]: Entering directory `/usr/src/linux-2.6.31-ARCH'
    CC [M] /root/atheros_ln_driver/src/at_main.o
    /root/atheros_ln_driver/src/at_main.c: In function 'at_request_irq':
    /root/atheros_ln_driver/src/at_main.c:262: warning: passing argument 2 of 'request_irq' from incompatible pointer type
    include/linux/interrupt.h:116: note: expected 'irq_handler_t' but argument is of type 'void (*)(int, void *)'
    /root/atheros_ln_driver/src/at_main.c: In function 'at_probe':
    /root/atheros_ln_driver/src/at_main.c:343: warning: 'DMA_nnBIT_MASK' is deprecated
    /root/atheros_ln_driver/src/at_main.c:344: warning: 'DMA_nnBIT_MASK' is deprecated
    /root/atheros_ln_driver/src/at_main.c:347: warning: 'DMA_nnBIT_MASK' is deprecated
    /root/atheros_ln_driver/src/at_main.c:348: warning: 'DMA_nnBIT_MASK' is deprecated
    /root/atheros_ln_driver/src/at_main.c:392: error: 'struct net_device' has no member named 'open'
    /root/atheros_ln_driver/src/at_main.c:393: error: 'struct net_device' has no member named 'stop'
    /root/atheros_ln_driver/src/at_main.c:394: error: 'struct net_device' has no member named 'hard_start_xmit'
    /root/atheros_ln_driver/src/at_main.c:395: error: 'struct net_device' has no member named 'get_stats'
    /root/atheros_ln_driver/src/at_main.c:396: error: 'struct net_device' has no member named 'set_multicast_list'
    /root/atheros_ln_driver/src/at_main.c:397: error: 'struct net_device' has no member named 'set_mac_address'
    /root/atheros_ln_driver/src/at_main.c:398: error: 'struct net_device' has no member named 'change_mtu'
    /root/atheros_ln_driver/src/at_main.c:399: error: 'struct net_device' has no member named 'do_ioctl'
    /root/atheros_ln_driver/src/at_main.c:403: error: 'struct net_device' has no member named 'tx_timeout'
    /root/atheros_ln_driver/src/at_main.c:411: error: 'struct net_device' has no member named 'vlan_rx_register'
    /root/atheros_ln_driver/src/at_main.c:414: error: 'struct net_device' has no member named 'poll_controller'
    /root/atheros_ln_driver/src/at_main.c: In function 'at_io_error_detected':
    /root/atheros_ln_driver/src/at_main.c:834: error: 'struct net_device' has no member named 'priv'
    /root/atheros_ln_driver/src/at_main.c: In function 'at_io_slot_reset':
    /root/atheros_ln_driver/src/at_main.c:857: error: 'struct net_device' has no member named 'priv'
    /root/atheros_ln_driver/src/at_main.c: In function 'at_io_resume':
    /root/atheros_ln_driver/src/at_main.c:884: error: 'struct net_device' has no member named 'priv'
    make[2]: *** [/root/atheros_ln_driver/src/at_main.o] Error 1
    make[1]: *** [_module_/root/atheros_ln_driver/src] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.31-ARCH'
    make: *** [default] Error 2
    again, no internet information available, although someone posted about editing the source file, but getting send and transmit errors once the driver was loaded into the kernel.
    thanks for the help.
    P.S. compiling this thing under ubuntu was no problem, and it worked instantly.

  • Acer Aspire one will not boot up

    When I boot up my Acer Aspire one  I get a message that says:
    Windows failed to start.  A recent hardware or software change might be the cause.  To fix the problem:
    1. Insert your Windows installation disc and restart your computer.
    2. Choose your language settings, and then click "next"
    3.  Click "Repair your computer"
    If you do not have this disc. contact your system administrator or computer manufacturer for assistance.
    File:  \Boot\BCD
    Status:  0xc000000e
    Info:  An error occurred while attempting to read the boot configuration data.
    The only problem is that my net book has no disc drive.  What am I to do??

    From ABOUT:
    Start
    System Recovery Options.
    There are several ways of starting System Recovery Options. See How To Access the System Recovery Options Menu in the link above for help.
    Open Command Prompt from the System Recovery Options menu.
    Note: The
    Command Prompt available from the System Recovery Options menu is very similar to the one you may be familiar with within Windows. Also, the following procedure should work as described in both Windows 7 and Windows Vista.
    At the prompt, type the bootrec
    command as shown below and then press Enter:
    bootrec /rebuildbcd
    The bootrec command will search for Windows installations not included in the Boot Configuration Data and then ask you if you'd like to add one or more to it.
    You should see one of the following messages at the
    command line.
    Option 1
    Scanning all disks for Windows installations.
    Please wait, since this may take a while...
    Successfully scanned Windows installations.
    Total identified Windows installations: 0
    The operation completed successfully.
    Option 2
    Scanning all disks for Windows installations.
    Please wait, since this may take a while...
    Successfully scanned Windows installations.
    Total identified Windows installations: 1
    [1] D:\Windows
    Add installation to boot list? Yes<Y>/No<N>/All<A>:
    If you see:
    Option 1: Move on to Step 5. This result most likely means that Windows installation data in the BCD store exists but bootrec couldn't find any
    additional installations of Windows on your computer to add to the BCD. That's fine, you'll just need to take a few extra steps to rebuild the BCD.
    Option 2: Enter Y or Yes to the
    Add installation to boot list? question, after which you should see a
    The operation completed successfully message, followed by a blinking cursor at the prompt. Finish up with Step 10 toward the bottom of the page.
    Since the BCD store exists and lists a Windows installation, you'll first have to "remove" it manually and then try to rebuild it again.
    At the prompt, execute the bcdedit command as shown and then press Enter:
    bcdedit /export c:\bcdbackup
    The bcdedit command is used here to export the BCD store as a file: bcdbackup. There's no need to specify a
    file extension.
    The command should return the following on screen:
    The operation completed successfully.
    meaning the BCD export worked as expected.
    At this point, you need to adjust several
    file attributes for the BCD store so you can manipulate it.
    At the prompt, execute the attrib command exactly like this:
    attrib c:\boot\bcd -h -r -s
    What you just did with the attrib command was remove the
    hidden, read-only, and
    system attributes from the file
    bcd. Those attributes restricted the actions you could take on the file. Now that they're gone, you can manipulate the file more freely - specifically, rename it.
    To rename the BCD store, execute the ren command as shown:
    ren c:\boot\bcd bcd.old
    Now that the BCD store is renamed, you should now be able to successfully rebuild it, as you tried to do in Step 3.
    Note: You could delete the BCD file entirely since you're about to create a new one. However, renaming the existing BCD accomplishes the same thing since it's now unavailable to Windows, plus provides you yet another layer of backup, in
    addition to the export you did in Step 5, if you decide to undo your actions.
    Try rebuilding the BCD again by executing the following, followed by Enter:
    bootrec /rebuildbcd
    which should produce this in the Command Prompt window:
    Scanning all disks for Windows installations.
    Please wait, since this may take a while...
    Successfully scanned Windows installations.
    Total identified Windows installations: 1
    [1] D:\Windows
    Add installation to boot list? Yes<Y>/No<N>/All<A>:
    meaning that the BCD store rebuild is progressing as expected.
    At the Add installation to boot list? question, type Enter Y or
    Yes, followed by the Enter key.
    You should see this on screen:
    The operation completed successfully.
    meaning that the BCD rebuild is complete.
    Restart your computer.
    Assuming that an issue with the BCD store was the only problem, Windows should start as expected.
    If not, continue to troubleshoot whatever specific issue you're seeing that's preventing Windows from booting normally.
    Important: Depending on how you started System Recovery Options, you may need to remove a disc or
    flash drive before restarting.

  • Wireless with acer aspire one linux linpus

    hi everyone, have just had replacement hh3 which is connecting ok wireless to my laptop, but my wife has little acer aspire one which used to connect ok but now wont, it does pick up the fon sometimes but i would like it how it was and connecting directly to the hub. it does connect ok using a cable but not wireless. any help or suggestions please.
    Solved!
    Go to Solution.

    I would expect if you deleted all the existing wifi connections and then reboot.  look for wireless connections available then select your ssid then connect - it will ask for key/password then enter then connect.  it would normally save infor but I am not a linux user - works in windows
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Acer Aspire One will only connect via Fon now on H...

    Since activating Fon on my BT Home Hub my Acer Aspire One - running Linux Linpus - will no longer log on to the 'normal' wireless connection on my hub, only Fon, which has limited bandwidth, etc.
    Anybody know why? Have a solution?
    I've 'proved' it's the Fon activation my doing a full reset on the hub. My One connected normally until Fon was reactivated, then back to Fon connection only

    Re WPA - it was fine until Fon was activated!
    When I did a factory reset on the hub the One connected as normal - until Fon reactivated at which point it was back to via Fon only!
    As the MAC address for FON and your normal SSID would be the same, perhaps it is seeing your normal SSID and assuming that is FON, and connecting to that in preference to your normal one.
    Really strange problem.......
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • PXE with Acer Aspire One D150 ?

    Hello
    We are about to start testing Acer Aspire One D150 and I cant get it to
    work with PXE boot, it wont find the NIC drivers. The NIC is "Atheros
    something" and I dont even know where to start. Tha machine does not have a
    CD so I cant boot with the boot-cd either...
    I tried putting in the new imaging files from zdm7sp1ir3a_hp3 (feb -09) but
    same result, coudnt find NIC.
    Please advice.

    How bloody hard can it be for the Novell-people to post an image which works
    for Aspire one D150 ? I dont have the knowledge to compile this stuff
    myself, I hate when this happens as soon as we are testing new hardware...
    So... there isnt a working image today ? :(
    /D
    "mpullen" <[email protected]> skrev i meddelandet
    news:[email protected]...
    >
    > Thomas--
    >
    > A couple of days ago 'I posted a similar request in this forum'
    > (http://forums.novell.com/novell-prod...ml#post1753904),
    > which included the information you've requested:
    >
    > Attansic (Atheros) AR8114 "atl1e" NIC (device ID 0x1969 0x1026)
    >
    > Same as Dan, we've tried using the 'Feb 2009 imaging driver update'
    > (http://download.novell.com/Download?...d=aC2y2x_7o_Q~) (initrd dated
    > 02/21/2009). The "atl1e" driver is -not- in that update, nor in the
    > 12/20/2008 driver update (initrd 12/20/2008), nor the 11/18/2008 initrd
    > we had been using originally. The atl2 driver apparently included in the
    > 12/20/2008 update (but excluded from the 02/21/2009 update) -does not
    > work- with the D150's NIC.
    >
    > The 'vendor website' (http://partner.atheros.com/Drivers.aspx) does not
    > offer a Linux driver for the L1e NIC (the L1e is -different- from the
    > L1); however, 'a source file'
    > (http://jan.ucc.nau.edu/wal2/l1e-linux-v1.0.1.0.tar.gz) for a atl1e
    > Linux driver is linked in an article at 'ATL1E Linux Driver for Ethernet
    > controller: Attansic Technology Corp. Unknown device 1026 (rev b0)'
    > (http://jan.ucc.nau.edu/wal2/atheros_attansic.html). Unfortunately, the
    > build instructions there are for Ubuntu 8.04, which isn't helpful in a
    > SUSE environment.
    >
    > I would love to learn to compile this myself, but cannot find a Linux
    > environment in which has the right kernel source (2.6.16.60-0.21) for
    > the Feb 2009 update (nor even for 2.6.16.46-0.12, the kernel from our
    > previous stable imaging environment.) I've tried to 'follow the
    > instructions in the Zen 7 Admin Guide'
    > (http://www.novell.com/documentation/...a/a74bm8u.html),
    > but don't quite have the Linux knowledge depth yet to fill in the gaps
    > necessary to for it to work in our environment. Any hints on this would
    > be welcome here; I'd certainly post a working driver back here if we can
    > get one made!
    >
    >
    > Thanks!
    >
    > Mike Pullen
    > Computer Tech
    > School District of Baraboo, WI
    >
    >
    > --
    > mpullen
    > ------------------------------------------------------------------------
    > mpullen's Profile: http://forums.novell.com/member.php?userid=46061
    > View this thread: http://forums.novell.com/showthread.php?t=365473
    >

  • Roxio won't open in Desktop Manager Ver 4.5 on Acer Aspire one

    When I try to open Roxio, in Desk Top Manager V 4.5, it gives a message that my screen resolution should be set to 1024 x 768 but my Acer aspire One is only capable of 1024 x 600. It works fine on another notebook and my desktop. I'd really like to get my music and jpg files from my 8830 to this new laptop also. Does anyone know of a work around for this problem? Thanks.
    Solved!
    Go to Solution.

    You can do it with windows explorer, connect the device to the pc and open windows explorer, and you can manage all the pictures and songs, becuase the device is detected like a external hard drive 
    If I help you with any inquire, thank you for click kudos in my post.
    If your issue has been solved, please mark the post was solved.

  • Airport Express won't work with Acer Aspire One

    I've recently set-up a wifi network for my parents. They have a cable modem from which an ethernet cable runs to their Vonage modem. From there, another ethernet runs to the Airport Express (set to Bridge Mode). Wifi uses WPA2 Personal encryption.
    My MacBook Pro as well as my dad's Dell laptop (Vista) can connect just fine and browse the web, no problemo.
    However, my Mom's Acer Aspire One netbook (Win XP) keeps on saying "Acquiring network address" and kind of just hangs there. I've tried resetting the Airport Express to no avail. Does anyone have any ideas what could be causing this? I'm open to any suggestion guys, thanks!

    I'll take a quick pass, but no guarantees as I'm not a PC guy.
    XP, depending on the version installed on the Acer may not fully support WPA2 Encryption. Or, if it does, you may need to change some settings on the PC to use TKIP, not AES associated with WPA2.
    It might be a bit easier to switch the security to WPA/WPA2 Personal on the AirPort Express and give that a try.
    AirPort Utility > Manual Setup > Wireless Tab > Wireless Security.
    The same TKIP/AES thing may still apply on the ACER though, so you'll need to investigate if things are still sticky on the ACER.
    Finally, my PC friends tell me that 90% of all connection problems on a PC can be traced to the Firewall settings and/or anti-virus settings. You may have to go into the applications to specifically allow the connection to the Express.

Maybe you are looking for

  • Ipod doesn't work after firmware update

    I have an old ipod and I tried to update the firmware. After the update It did'n work. ON the Ipod screen it appear like a plug indicating to charge it, but I charged it several times and the result is the same. Now i'm trying to recover it again but

  • Problem weblogic 9.2 with quartz and log4j : url-template-config.xml

    Hello, I configure a Servlet Quartz to run when WebLogic 9.2 starts, but i have an exception, here is my log : 2009-04-15 11:52:52,424 ERROR Logger.error(): Exception while loading URL templates, /WEB-INF/url-template-config.xml Throwable: javax.serv

  • How can I get my movie rental back?

    my rental movie is not in my library. I downloaded it onto my iPad, which i had to restore. Now it isn't on my iPad nor my Library. But it shows up in my purchases. thanks in advance.

  • POPup LOV value

    Hi, I have a POPUP LOV (which displays a numeric id and description). I want the user to be able to type a number in the pop lov and as soon as they are done entering I want the corresponding description (in the lov) to be displayed in a text box. Ho

  • MacBook Pro - Apple vs. BestBuy

    I am interested in purchasing a MacBook Pro but I would like to have some help in why should I purchase through Apple or an Apple Retail Store versus Best Buy?  Best Buy appears to have a lower price than the Retail Store but what am I missing?  HELP