AIR Applications fail to install (Acer Aspire One, Linux)

I've successfully installed the latest version of AIR for Linux on my Aspire One, although it took a few attempts.
I am, however, not succeeding in installing any apps.
1. My system believes that .air files are actually ZIP files and offers to unpack them: there seems to be nothing I can point them at to be opened by AIR itself.AIR does not appear in any menus, app lists etc
2. If I go to a site that offers a "badge" install, the install system correctly recognises that AIR 1.5 is installed (checked box in the installer) and doesn't try to install it again. However, the apps do not install successfully - all fail with an Error #2004 and ask me to try again, which always fails.
I can't seem to find any information whatsoever on this anywhere and I'm a bit surprised. It is surely not impossible to achieve, and I equally don't believe nobody else has had any trouble.
Suggestions anyone?
Thanks!
--Richard E

Right! "rpmbuild" was the answer to installing AIR successfully on this machine.
Assuming that you have somewhat unlocked the machine as described in http://macles.blogspot.com/ and elsewhere, this simplest way of getting rpmbuild installed is to open a terminal and, as root, do "yum install rpm-build" - note the hyphen in the package name. If you aren't subscribed to a suitable repository, you can find it pretty easily with a Google for "fedora8 rpm-build".
With rpm-build in place, AIR installed successfully using "./AdobeAIRInstaller.bin".
".air" applications are now correctly identified as belonging to AIR and badge installs also work.
My intention in doing all this was to get a suitable Twitter etc app running on the machine, so I first tried the current version of Seesmic Desktop. It opened normally and allowed me to enter account details… and lo! it downloaded tweets! Unfortunately I never managed to get it to do that again. A bunch of small authorisation windows opened up, one for each installed account, requiring confirmation of password, and I couldn't enter anything in the field with the main window open. Minimising the main window I could now enter passwords, and OK dismissed the window, but it didn't seem to do any good. I have not seen a tweet since and all the panels in the main window are empty. A pity.
My other favourite Twitter app is Tweetdeck - in fact I think it's superior to Seesmic Desktop if you just run a single Twitter account. Here the main window opens somewhat off-screen and blank (black) with control buttons at the top. Unfortunately although the buttons reveal their tooltips on mouseover, you can't actually access any of them, notably the account setup button. Thus the app is not usable.
Third attempt was Twhirl, also from Seesmic (http://www.twhirl.org/). The version I had previously downloaded, 0.8.6, opened an account setup window but when you entered a password it just sat there. Luckily behind it was a window offering an update. Updating the package installed 0.9.2. This time the account window allowed the entering of an account name and password and duly displayed a window of tweets! And I was also able to write and send tweets successfully. Success! You can enter details for multiple accounts, and each has its own resizable window that contains messages pertaining to the account. Not as useful for me as Tweetdeck or Seesmic Desktop, but entirely usable (Desktop is actually a bit big for this machine's display anyway). However closing and reopening Twhirl I discovered that the application is not remembering passwords even when you tell it to - though it does remember the account names. Although I would like a fully-functioning app (and preferably one or both of the other two) this will do for the time being.
I notice that issues regarding passwords and authorisation are the common factors in these misbehaviours: if anyone can shed any light on this, please let me know.
Thanks to GauravKhurana for the key to solving this issue and the support in discovering it.
--Richard E

Similar Messages

  • 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’.

  • 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)

  • 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.

  • [SOLVED] Acer Aspire One - Wireless issue + Wpa_supplicant

    Hi there!
    I've been using arch on both my desktop and laptop for a while, with wpa_supplicant working perfectly for both of them (University 802.1x auth) I have a config file which works perfectly on the same wireless network with my laptop, but on the netbook I just can't seem to get on it. It's an Acer Aspire One - A150.
    This computer uses as we know an atheros chip, which I just can't seem to get working. My laptop on the other hand uses an ipw2200 chip which works fine.
    I've installed the madwifi modules, and when doing iwconfig i can see wlan0 listed.  If i try to scan for wireless ap's with "iwlist wlan0 scan" it does not find anything.
    Doing "wpa_supplicant -Dmadwifi -iwlan0 -c/..../wpa_supplicant.conf -dd " produces the following error
    [henrik@scribble ~]$ sudo wpa_supplicant -Dmadwifi -iwlan0 -c/home/henrik/wpa_supplicant.conf -dd
    Initializing interface 'wlan0' conf '/home/henrik/wpa_supplicant.conf' driver 'madwifi' ctrl_interface 'N/A' bridge 'N/A'
    Configuration file '/home/henrik/wpa_supplicant.conf' -> '/home/henrik/wpa_supplicant.conf'
    Reading configuration file '/home/henrik/wpa_supplicant.conf'
    ctrl_interface='/var/run/wpa_supplicant'
    eapol_version=1
    ap_scan=1
    fast_reauth=1
    Line: 485 - start of a new network block
    ssid - hexdump_ascii(len=7):
    65 64 75 72 6f 61 6d eduroam
    key_mgmt: 0x1
    eap methods - hexdump(len=16): 00 00 00 00 19 00 00 00 00 00 00 00 00 00 00 00
    identity - hexdump_ascii(len=21):
    68 72 69 30 30 33 40 6d 61 69 6c 62 6f 78 2e 75 xXxXXX@xxxxxxx
    69 74 2e 6e 6f xx.com
    password - hexdump_ascii(len=8): [REMOVED]
    phase2 - hexdump_ascii(len=13):
    61 75 74 68 3d 4d 53 43 48 41 50 56 32 auth=MSCHAPV2
    priority=10 (0xa)
    Priority group 10
    id=0 ssid='eduroam'
    Initializing interface (2) 'wlan0'
    EAPOL: SUPP_PAE entering state DISCONNECTED
    EAPOL: KEY_RX entering state NO_KEY_RECEIVE
    EAPOL: SUPP_BE entering state INITIALIZE
    EAP: EAP entering state DISABLED
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    SIOCGIWRANGE: WE(compiled)=22 WE(source)=21 enc_capa=0xf
    capabilities: key_mgmt 0xf enc 0xf
    WEXT: Operstate: linkmode=1, operstate=5
    ioctl[IEEE80211_IOCTL_SETPARAM]: Operation not supported
    wpa_driver_madwifi_init: failed to set wpa_supplicant-based roaming
    WEXT: Operstate: linkmode=0, operstate=6
    Failed to initialize driver interface
    Failed to add interface wlan0
    Cancelling scan request
    Cancelling authentication timeout
    [henrik@scribble ~]$
    I really hope some of you have a suggestion to what I can do to fix this, as it's really annoying only being able to use wired.
    What I find wierd, is that "iwlist...scan" does not work.
    Thanks in advance
    -Henrik
    Last edited by henrikken (2009-03-24 15:49:54)

    two things:
    1. Your computer should be using the ath5k driver for the ar5007 chipset that your netbook has... and
    2. If the opensource approach doesn't work for you, build this driver.
    p.s. (wlan0 will be renamed to ath0)
    #Contributor: KJoN <[email protected]>
    pkgname=madwifi-hal
    pkgver=0.10.5.6
    pkgrel=svn
    pkgdesc="Multiband Atheros Drivers - hal 0.10.5.6 - svn"
    arch=('i686' 'x86_64')
    url="http://svn.madwifi-project.org"
    license=('GPL')
    depends=('subversion')
    provides=('madwifi' 'madwifi-utils')
    source=()
    md5sums=()
    build() {
    cd $startdir/src
    svn co http://svn.madwifi-project.org/madwifi/branches/$pkgname-$pkgver
    cd $pkgname-$pkgver
    make
    make DESTDIR=$startdir/pkg install
    cp $startdir/pkg/usr/local/* $startdir/pkg/usr -vR
    cp $startdir/pkg/usr/share/* $startdir/pkg/usr -vR
    rm $startdir/pkg/usr/{local,share} -r
    errr... remember to blacklist ath5k on MODULES on your rc.conf and please, run depmod -a after installing this package.
    Luck with your issue

  • 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! :(

  • 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.

  • [SOLVED] Questions on Acer Aspire One netbook resolution

    I've been digging through the wiki and googling everything, but I just can't figure out how to get the dang resolution right!
    I've got an Acer Aspire One (D257, model ZE6) and technically, it should be 1024 x 600. Everything seems like it's the right size, but it's just slightly blurry and looking at it makes me a bit dizzy, like it's just slightly off. I've read that the Acer netbooks are SIZED to 1024x600 but use the RESOLUTION of 1024x768. Could anyone confirm this? Am I way off base?
    The wiki suggests using xrandr to change the resolution, but I get the BADMATCH error. The solutions I googled mostly involve editing an xorg.conf, which doesn't exist. Trying to generate it myself always fails (xorg -configure, which always leads to "number of created screens does not match number of detected devices").
    Maybe I've just missed something really obvious... But I can't seem to find it.
    Last edited by DevPug (2013-07-27 17:41:41)

    WonderWoofy wrote:There is the kernel driver, which is the i915 module from the kernel, and then there is the Xorg driver, which is provided by the xf86-video-intel package.  Do you have both?
    OH MY GOD. I followed the wiki to a T, but when I double-checked, I didn't have i915 listed in the MODULES="" line. So I must have not saved it, in my hurry to get everything going. My desktop looked okay-ish, but my web browser was resizing text improperly, hence the 'dizzy' effect.
    Thank you from the bottom of my heart for catching my silly oversight!
    Gusar wrote:I wouldn't say "crappy display", I'd say you don't like the default anti-aliasing.
    This is also true, though... My next task is to find better anti-aliasing that I can get along with. The default just isn't cutting it, now that I can see it clearly.
    Last edited by DevPug (2013-07-27 17:57:58)

  • 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/

  • Can't get internet on acer aspire one

    Hello
    I just installed Arch Linux on my Acer Aspire One, after a while I lost ethernet connection, either dhcp or static IP adresses work, I've checked that all the IP adresses are correct when using static IP adress, the arch linux box on the network can't get any response from the netbook.
    Anybody experiencing the same with this netbook?
    EDIT: when I have looked at the ip adresses after trying with dhcp, it has completely different adresses than it should have.
    Last edited by Roberth (2008-08-25 23:17:50)

    hey..did you update to kernel 2.6.26 and do you use the driver as described in the wiki? this settings work without any probs on my A1

  • 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?

  • Firefox on android driven acer aspire one

    how can i install an firefox update on mij acer aspire one laptop with android on it. i have tried the android market but can not get any further cause the shop said no phone attached. It is no phone, its a laptop. how can i update.

    If you don't have the market on your device it can be downloaded at https://bitly.com/fennecftp

Maybe you are looking for

  • Error loading from database

    I have a .wft file and two databases: Deploy and Production. If I save the .wft file to Production it works fine but if I save it to Deploy I get when Uploading from database: 1300: Could not load. 1114: Could not load from database. 1115: Could not

  • Updating Bank Details Periodically.

    Hi Experts, Does SAP provide a functionality to update the bank details with which the organisation transacts using a middleware such as XI/PI????? More specifically I wanted to know whether SAP has some built in component that would allow retreival

  • Download Error for 4.1.2 GB on OSX 10.4.11

    Checking for updates, the dialog says 3.0.4 is the current version for this OS. After downloading 4.1.2, installation shows "valid GB version not found in Applications." So we tried putting the .pkg into applications to install. Same message. We are

  • Data loading..few records could not be loaded

    Hi Sapiens i am loading data from one source to bw. all records have been loaded except for 10 reocrds which were missing. How can be we load only the 10 missing records. i dont want to load all records again. Plz guide Regs Sanju

  • 802.1q Q-in-Q on UCS

    Hi, I was wondering if Q-in-Q is supported for the Fabric Interconnect and how I can configure it in UCS Manager. I have reaad the Fabric Interconnect needs to be set to Switching Mode for VLANs to be handled. How does the Fabric Interconnect treat i