Problemes installing Arch Linux on Acer Aspire One

Hello!
I'm trying to install Arch on AA1, but it seems that it wont cooperate with me
My problem is that I've used unetbootin to make my Corsair memorystick bootable, and it works fine to boot with and start /arch/setup. But when I come in to "prepare hard drive" and onto "Partition Hard Drives" it says this:
Available Disks:
/dev/sda: 7680 MiB (7 GiB)
/dev/sdb: 114473 MiB (111 GiB)
And I can't install Arch while my harddrive is listed as "sdb" and my stick occpies "sda". And I've tried to switch usb-ports with zero results. Any suggestions?

When I just tried now it worked. HD on sda and stick on sdb. Strange, strange world.

Similar Messages

  • Arch update killed acer aspire one - grub dies

    hello all, I've just come back from nearly three weeks without internet, did pacman -Syu on both my computers. Main PC all updated fine, acer one, seemed to go fine...on reboot, I get "loading grub" and then a total blank. blackscreen. Nothing. hard to say if anything's going on underneath, since the ssds are silent....sometimes I miss the mechanical clunks and clicks....anyway, I can't seem to find the topic on the aspire one thread, but I'm probably not the only one this has happened to, so if someone can give me a kick in the right direction it would halp a lot. Any ideas? Obviously, difficult to say what update caused it since there were so many.
    hoping not to have to reinstall again....
    cheers

    A grub boot command from the title of a topic kills a boot. If you have anything other than just the kernel in the boot line, try getting rid of it and seeing if that works.

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

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

  • 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

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

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

  • Linux-one - kernel for acer aspire one

    i'm recently bought an acer aspire one d255e and found the linux-one kernel in the AUR. linux-one
    i would like to know what your comments, tips and improvements are.
    i'm not the maintainer of the package just an user. I will try to build this kernel this afternoon and post some comments.
    please feel free to comment if this kernel work in your acer aspire one and what modification you have done in the config to get your aao working.
    cheers
    edit: typo
    Last edited by warenoso (2011-08-15 23:06:43)

    I have a aao 532h with an Atom N450 processor and use the kernel-netbook package which also supports Atom N550 processors. It works 'out of the box' on my machine and the only thing I would think to check in the config for yours is support for your graphics which I believe is Intel GMA 3150.
    I haven't tried the linux-one package as it's for the first aao netbook that came out which didn't have bluetooth.

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

  • How to partition a USB flash-drive to install Arch Linux?

    Good afternoon,
    Could anyone please guide me in the right direction, how would I go about partitioning my USB flash-drive in order to install Arch Linux onto my Acer Aspire One? I've found guides, but none of them are specific enough - the static assumption being that the OS is already partitioned onto your flash-drive, and that is not the case for me.
    Much appreciated,
    A Swiftly Tilting Planet

    assuming your usb key is /dev/sdz
    # dd if=/dev/zero of=/dev/sdz
    //cleans the usb drive
    # fdisk /dev/sdz
    // press m and read the help, make a partition, make it bootable
    // you have to press (double check anyway):
    // n, p, 1, <enter>, <enter>, a, 1, t, b, w
    # mkfs.vfat /dev/sdz1
    // formatting
    The first passage can actually replaced to something more modest, like:
    # dd if=/dev/zero of=/dev/sdz bs=1024 count=1
    Last edited by ezzetabi (2009-01-03 16:37:04)

  • 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

  • Acer Aspire One A0A 150: screen flicker, blanking (intel driver?)

    Being the stubborn sort, I've been struggling for more than a month with the following problem, to no avail.
    The screen on my Acer flickers while running X (seems to be independent of window manager I run.) Even worse, at random intervals, the screen will actually go completely black (or sometimes green or blue, but usually black.)
    To be clear, I am not absolutely sure the flickering and screen blanking are related to each other... only 90% certain.
    The flickering and blanking seem completely unrelated to what I'm doing on the computer. The blanking will happen if I'm watching a movie, or even if I'm simply typing an email (in fact, it has happened as I typed this post!) When the screen blanks out, the only way to recover it is to shut the lid of the laptop, wait a couple of seconds, and open it again. Closing the laptop lid suspends the laptop and the screen seems to recover when the computer wakes up. Nothing else seems to bring the screen back: not console switching, not killing X, nor any magic key combination. Before I figured out that suspend/resume would bring back the screen, I had to reboot it with SysRq-B.
    Although the flicker/blanking happens frequently, it leaves no traces I can find in either dmesg or Xorg log. I do not use an xorg.conf file.
    One MIGHT think it is a hardware issue, but it NEVER occurs when I boot into Windows XP. I have used XP for days without any flicker or blanking (hence one reason I think the two issues are related.) Also, I'm pretty sure it doesn't occur when I boot the computer into xPUD.
    Some research led me to think my issue might be with the intel driver. With that in mind, I've tried different versions of the driver:
    xf86-video-intel from both extra and testing.
    xf86-video-intel-git from AUR
    xf86-video-intel-newest from AUR.
    (In each case, with the appropriate dependencies, etc.)
    Presently, I'm using the driver from testing, but none of the drivers has made any noticeable difference: the problem remains.
    Finally, I am using Tera's one-dev kernel for the Acer Aspire One, available in AUR.
    Does anyone have any idea how to fix this issue? It's driving me to rely on Windows XP a lot more often, as suspending/resuming the laptop when it blanks out really interrupts my work. Please save me from Windows :-)
    Last edited by tw (2009-12-29 09:48:09)

    damjan wrote:UVESAFB and KMS will probably never work together. Just use KMS it's way better (and you should be able to run same splash on KMS too)
    Thanks. Means I yet again learned something about linux the trial and error way.
    I actually used a setup where KMS was disabled and UVESAFB enabled, since the Arch Wiki entry on Splashy strongly recommended UVESAFB and didn't mention KMS. Oh well. KMS enabled now, the UVESAFB daemon thrown out. I should probably get a wiki account, suggest a clarification of that entry to prevent other newbies from making the same mistake.
    EDIT: Added a section on KMS to the Arch Wiki entry on Splashy
    Last edited by caligo (2010-01-11 12:49:01)

  • Installing Arch Linux on USB key: error while booting

    Hello,
    first of all, I must say I've followed the steps from this article on arch wiki to install archlinux on my USB key: https://wiki.archlinux.org/index.php/In … _a_USB_key
    So what I did is to use one of my 2 usb keys to INSTALL linux, and the second one to RUN linux. I used dd to write on the 1st usb, eveything worked fine when booting, then I do install arch on the my second usb following the stept from the link above, everything works until I get this error while booting (at the middle):
    Waiting 10 seconds for device /dev/sdc/
    Root device '/dev/sdc' doesn't exist. Attempting to create it.
    ERROR: Unable to determine major/minor number of root device '/dev/disk/by-uuid/lotsofnumbers'
    You are being dropped to a recovery shell
    Type 'exit' to try and continue booting
    /bin/sh: Can't contact tty; job control turned off
    [ramfs /]#
    To summarize I'll show you my conf files that could help you to resolve my problem:
    /etc/fstab.conf
    /dev/sdc1 /boot ext2 defaults 0 1
    /dev/sdc2 / ext3 defaults 0 1
    /dev/sdc3 /home ext3 defaults 0 1
    So here I've sdc1 boot 32MB partition; sdc2 root 3GB partition; sdc3 home 978MB partition for a total of 4GB USB key~
    I didn't make a swap partition as in the tutorial they are writing it's unnecessary for some kind of reasons.
    /etc/mkinitcpio.conf
    HOOKS="base udev usb autodetect pata scsi sata filesystems"
    I've added to here, "usb" to the hooks
    installed GRUB on my sdc, here is the menu.ist:
    # (0) Arch Linux
    title Arch Linux (USB)
    root (hd0,0)
    kernel /vmlinuz26 root=/dev/sdc ro vga=773
    initrd /kernel26.img
    So, I boot GRUB without problems, start Arch Linux, but then I got this error above.
    I've searched alot on some forums and read many stuffs, but sitll can't fix it and it seems complicated.
    I've tried to boot with UUID, also, but didn't make difference. I tried to remove some parameter from the hooks, but unfortunately this wasn't working still. I've read somewhere to use chroot, but I didn't catch on how to do that and what was the use of chroot, I'm still noob user of arch linux and currently learning. Maybe it's the problem, as some forum were talking about creating a new image, but I still don't know how to make it. By the way, I'm not sure this could have fixed my current problem. I've also read somewhere it could be due to my lack of space, but I wrote you how I did partition my USB key, let me know if you have any suggestion please.

    1. What I did is re-installing entirely from my installation disk or USB to test out different setting in  my config files, because I don't know how to edit my .conf as I can't really finish to boot to the end and get in terminal mode? If there is a quicker way to edit files from any terminal to go into my current USB sdc to modify directly my file from there, I'd enjoy probably. So rebuilding the initpio, no, I just re-installed to test out different configs.
    2. Yes, same error.
    3. Tested out by-id/by-path and uuid = no difference
    4. Didn't know about larch, it seems to be a nice tool, I'll check it out

  • 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

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

Maybe you are looking for