Acer Aspire One Tips and Tricks

Tuesday, May 19, 2009 Posted by Eric Lee 0 comments

I have, well had, a Powerbook G4 which was driving me nuts. Having been using Linux for a such a long time, I wasn’t quite able to adjust to how a Mac dealt with software - most of the stuff out there isn’t free. That was just one of the problems I had with a Mac. Making a long story short, I ended up with giving my Powerbook to my parents. I’m sure they’ll enjoy it way more than I do.

So, having gotten rid of that laptop, I suddenly found myself laptop-less, which, to be honest, left me feeling quite naked. I did find a solution though! Getting hold of an Acer Aspire One.



The machine is finally in my hands. You can find the following tips and tricks for:

Please keep in mind that most changes done to the system will require you to have root-access. So unless specified otherwise, run all the commands as root. Whether you are root or not is indicated by the first character in your terminal. $ signifies that you’re a regular user, # is for when you are root.

Oh, and if you’re wondering about what the root password is, I believe it is the same as your regular user password. If you’d like to change it though, do the following:

$ sudo su -
# passwd root
New Unix password:
Retype new Unix password:
passwd: all authentication tokens updates successfully.
Before we proceed though, I need to emphasize that every instruction here is done at your own risk. There is no guarantee that any of this will work on your Acer Aspire One. Most people have reported these instructions to be a success, while others report failure. So, be cautious!


Changing to the default desktop

The Acer Aspire One runs a Linux distribution called
Linpus. This distribution comes with XFCE as the default windowmanager. Of course Acer has modified it a bit, which makes it look like this:




Word of caution though. Most websites will tell you to do the following:

su to root:

$ sudo su -
and open the file /etc/xdg/xfce4-session/xfce4-session.rc:

# mousepad /etc/xdg/xfce4-session/xfce4-session.rc
and find the line:

Client0_Command=xfdesktopnew
Change it to:

Client0_Command=xfdesktop-xfce
But the thing is, when you replace xfdesktopnew with xfdesktop-xfce, a script called xfce-mcs-manager won’t start up, and that is what some people find so “horrible” about the regular xfce-desktop. If we open up the file xfdesktopnew located in /usr/bin/, we find the following:

#!/bin/sh
if [ -f /usr/bin/xfce-mcs-manager.new ];then
sudo mv /usr/bin/xfce-mcs-manager.new /usr/bin/xfce-mcs-manager
fi
/usr/bin/xfdesktop2 & >/dev/null 2>&1
sleep 5
if [ -f /usr/bin/xfce-mcs-manager ];then
sudo mv /usr/bin/xfce-mcs-manager /usr/bin/xfce-mcs-manager.new
fi
As you can se here the script xfdesktopnew starts the application xfdesktop2. What that script contains, I’ve no idea. Try opening the file for yourself, you’ll see what I’m talking about. Anyway, in order for this to work, change the line:
/usr/bin/xfdesktop2 & >/dev/null 2>&1
to:
/usr/bin/xfdesktop & >/dev/null 2>&1
Save it and close it. Next, open up the file /usr/bin/xfdesktop, and change line 6 to look like this:
/usr/bin/xfdesktop-xfce & >/dev/null 2>&1
Save, close, and reboot. You should have a fully working xfce desktop, with icons!

Now, if you’re like me, and would like to have the icons gone from the desktop, create a file named xfdesktoprc in /home/user/.config/xfce4/desktop/ with the following in it:
[file-icons]
show-filesystem=false
show-home=false
show-trash=false
show-removable=true
Save and close, and reboot. The result? Something like my desktop:

Enjoy!


Enabling the Right-click Menu

Usually when you’re in xfce you can right-click on the desktop to bring forth a menu. This isn’t enabled as a standard function with the desktop that comes with the Acer Aspire One. To enable it, do the following.

On your desktop, under the File category, select My Documents. When this opens, select File and then Terminal. When the terminal opens, type:
$ xfce-setting-show
This will bring up the xfce settings manager. Select Desktop, Behavior and click the box named Show desktop menu on right click. Voila, that should be it.


Changing the keyboard layout to Norwegian

This can be done in at least two ways. You either put setxkbmap no at the bottom of the .bash_profile-file (located in your home-folder) like this:
$ echo "setxkbmap no" >> bash_profile
Or you can download and install this RPM.
Update: With the new Live Update-patch, this is no longer required.


Disabling autologin

Warning: Take caution when commenting out lines, and inserting new ones. The lack of a single character may render your system useless.
Open the file named /etc/rc.d/rc.S and comment out the following line:
/usr/bin/xinit -- -br>/dev/null 2>&1 &
Like this:
#/usr/bin/xinit -- -br>/dev/null 2>&1 &
Below this line, insert the following:
/usr/sbin/gdm
And that’s that. The username is user and the password is whatever you set it to be during the installation.

Should you for some reason be unlucky enough to forget to add /usr/sbin/gdm to the file, but still commented out /usr/bin/xinit — -br>/dev/null 2>&1 &, and rebooted.


Installing Firefox 3

If you want Firefox 3 to be installed properly (via yum), you should add the remi repository:
# wget http://rpms.famillecollet.com/remi-release-8.rpm
# rpm -Uvh remi-release-8.rpm
Edit the file /etc/yum.repos.d/remi.repo, and set enabled to 1 under [remi] and NOT [remi-test].

Then we proceed with removing the old Firefox and installing the new one. Now, a regular yum remove firefox won’t work, as it’ll drag a buttload of dependencies with it. However, this will only remove Firefox, without its dependencies:
# rpm -e --nodeps firefox
Then install the new one:
# yum install firefox
That’s all there is to it.

Now, having said that, a friendly chap named Nacho Marin made me aware of a problem that had totally slipped my mind. It seems that there are several programs that are depending on some libraries that Firefox 2 has, and not Firefox 3. The Acer Aspire One e-mail client being one of them, and the RSS reader too. The missing libraries are libgtkembedmoz.so, libmozjs.so, libxpcom_core.so and libxpcom.so.

A big thank you to Nacho for the heads up about the library-files.

Update: It seems that several people were complaining about how the e-mail program kept shutting down for no apparent reason. It seems that they need more than simply the library-files. I believe I’ve located the files, and that you now should be able to have both Firefox 3, and the email client working. Give me some feedback to let me know how the script turns out.

I have made a script to make this a bit easier to fix, see below:

Become root and open a file named recover_firefox_libraries.sh:
$ sudo su -
# mousepad recover_firefox_libraries.sh
Place the following in it:

#!/bin/bash
#
## Script to recover Firefox 2 libraries
## Version 2
#
#
## Usage: ./recover_firefox_libraries.sh

WGET=`which wget`
RPM_URL="http://jorge.ulver.no/files/firefox-files.tar.gz"
MV=`which mv`
CHOWN=`which chown`
CHMOD=`which chmod`
RM=`which rm`
TAR=`which tar`
MKDIR=`which mkdir`
RMDIR=`which rmdir`

cd /root/
echo "## Getting hold of the Firefox-files.."
$WGET $RPM_URL

echo "## Unpacking the library-files.."
$TAR zxvf firefox-files.tar.gz

echo "## Moving library-files.."
$MV /usr/acer/bin/AME /usr/acer/bin/old.AME
$MV /root/firefox-files/AME /usr/acer/bin/AME
$MKDIR /usr/lib/firefox-files/
$MV /root/firefox-files/* /usr/lib/firefox-files/

echo "## Changing permissions and cleaning up.."
$RM /root/firefox-files.tar.gz
$RMDIR /root/firefox-files/
$CHOWN -R root.root /usr/lib/firefox-files/
$CHMOD -R 755 /usr/lib/firefox-files/

echo "## Done!"
What the script basically does is to get hold of the file firefox-files.tar.gz (so be online when running it), moves the libraryfiles, changes the permission, and removes the file and the unnecessary directories it creates. Make the file executable, then run it:
# chmod +x recover_firefox_libraries.sh
# ./recover_firefox_libraries.sh
Have Fun!


Installing other packages with yum

If you want to install other packages with yum, a repository I can recommend is http://rpm.livna.org. You can add this repository by following these instructions. First, become root. You should be able to either do sudo su - and then entering the password for user, or just do su -, and entering the root-password (which I think is the same as for user):
$ sudo su -
# yum -y install yum-priorities
Open and edit the file /etc/yum/pluginconf.d/priorities.conf. Change vim to whatever editor you prefer (nano is one of the easier ones):
# vim /etc/yum/pluginconf.d/priorities.conf
Make the contents of the file look like so:
[main]
enabled = 1
check_obsoletes = 1
Save and close the file. Now finally, install this package and you should be set:
# rpm -Uvh http://www.fedorafaq.org/f8/yum http://rpm.livna.org/livna-release-8.rpm

Removing the search-bar

Removing the search-bar is very simple as well. Open the file /usr/share/search-bar/start-search_bar.sh and comment out each line to make the content look like so:
#!/bin/sh
#resolution=`xrandr |grep *|awk '{print $1}'`
#resolution=`xrandr |grep current|awk -F"current" '{print $2}'|awk -F"," '{print $1}'|sed 's/ //g'`
#
#if [ $resolution = "1280x800" ];then
# acer-search-desktop --x=650 --y=90 --width=490 --height=31
#elif [ $resolution = "1024x600" ];then
# acer-search-desktop --x=510 --y=65 --width=490 --height=31
#else
# acer-search-desktop
#fi

Enable Circular Scrolling

I doubt that this part is Linpus-specific, but after having had an Acer Aspire One for a few days, you’ll come to notice that the scrolling is damn annoying. The way to scroll as default is by dragging your finger along the right-hand side of the touchpad. And it isn’t even on the edge either, but a bit inside the edge. I personally found circular scrolling to be easier to use. Enable it like so.

Either press Alt+F2 and type gsynaptics or open a terminal and type the same. Go to Scrolling and select Enable Circular Scrolling. Enjoy!

Adding your own Desktop-Icons

You’re probably not going to use some of the the default applications listed on your Acer One-desktop. I know I’m not going to. But wouldn’t it be nice to be able to specify what programs you would like displayed on your desktop? Good thing it IS possible then. Have a look:


There you see that I’ve added two applications of my own - VLC and audacious. Here’s how you do it.

First off, you need to have the programs installed. In most cases you’ll already find that once you install the program, icons for it will come along. Check /usr/share/pixmaps/ for them. But should you need an icon for some program that hasn’t any at some point, it has to be 90×90, and be placed in that folder.

If you installed VLC through yum, like I did, then you’ll find the file livna-vlc.desktop in /usr/share/applications/. Now, for the sake of tidiness, I renamed the file to vlc.desktop:
# mv livna-vlc.desktop vlc.desktop
This file looks something like this:

[Desktop Entry]
Version=1.0
Name=VLC media player
Name[fr]=Lecteur multimédia VLC
Comment=Read, capture, broadcast your multimedia streams
Comment[fr]=Lire, capturer, diffuser vos flux multimedia
Name[sv]=Mediaspelaren VLC
Comment[sv]=Allmän uppspelare av film och musik
Name[ru]=Медиаплеер VLC
Comment[ru]=Универ�альный проигрыватель видео и аудио
Exec=vlc
Icon=vlc.png


Terminal=false
Type=Application
Categories=AudioVideo;Player;
MimeType=video/dv;video/mpeg;video/x-mpeg;video/msvideo;video/quicktime;video/x-anim;video/x-avi;video/x-ms-asf;video/x-ms-wmv;video/x-msvideo;video/x-nsv;video/x-flc;video/x-fli;application/ogg;application/x-ogg;application/x-matroska;audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-wav;audio/x-mpegurl;audio/x-scpls;audio/x-m4a;audio/x-ms-asf;audio/x-ms-asx;audio/x-ms-wax;application/vnd.rn-realmedia;audio/x-real-audio;audio/x-pn-realaudio;application/x-flac;audio/x-flac;application/x-shockwave-flash;misc/ultravox;audio/vnd.rn-realaudio;audio/x-pn-aiff;audio/x-pn-au;audio/x-pn-wav;audio/x-pn-windows-acm;image/vnd.rn-realpix;video/vnd.rn-realvideo;audio/x-pn-realaudio-plugin;application/x-extension-mp4;audio/mp4;video/mp4;video/mp4v-es;x-content/video-vcd;x-content/video-svcd;x-content/video-dvd;x-content/audio-cdda;x-content/audio-player;
X-Desktop-File-Install-Version=0.13
The next step is opening up the file /home/user/.config/xfce4/desktop/group-app.xml. Go through the file, you’ll see it’ll make sense. Now, I assume that you want VLC to be placed under the category Fun. Open the group-app.xml-file, and search for:
<id>7</id>
Somewhere in between there, add the following:
/usr/share/applications/vlc.desktop
Save and close the file, reboot, and your VLC-icon should be there. :) If you want your VLC-icon to be visible, like I did on my desktop, swap the sequence=”6″ with a more appropriate number (like 1-3), just make sure that two objects in the file don’t have the same sequence number.

Or even easier - click and drag the icon you want displayed into one of the first three slots.


The right resolution with an external monitor

If you’ve plugged in an external monitor, you’ve probably noticed that 1024×600 doesn’t look too good on a 17″. There is a remedy for this though, but you need to modify your xorg.conf-file.

First, take a backup of your current xorg.conf, in case something goes wrong:
# cp /etc/X11/xorg.conf /root/
Now open the file:
# mousepad /etc/X11/xorg.conf
Find the Screen-section - there should be a line there that says:

Virtual 1024 600
Change it to:
Virtual 2304 1024
Also add the resolutions “1280×1024″ and “1024×768″ to the Modes-line above. This will make sure that the virtual screen space is big enough to accomodate a 1280×1024 screen beside a 1024×600.

So that part of your xorg.conf should end up looking like this:
Modes "1280x1024" "1024x768" "1024x600" "800x600" "640x480"
Virtual 2304 1024

Save and close the file, and reboot to activate the virtual screen size.

Now, to be able to clone your desktop to the external monitor, press Fn-F5. If you however would like to use BOTH your Acer One Aspire, and your external monitor, open a file named dual_desktop.sh and put the following in it:
#!/bin/bash
xrandr -s 1280x1024
xrandr --output LVDS --left-of VGA --auto
Save, close, and do a chmod +x on it:
$ chmod +x dual_desktop.sh
Press Fn-F5 till both your Acer Aspire One and the external monitor are active. Then run the script:
$ ./dual_desktop.sh
Now when you run it, you should be able to drag applications between your Acer Aspire One, and your external monitor. Just change –left-of to –right-of if your Acer Aspire One is on that side. Change the resolution in the script to something else as well if you should need it. If you don’t feel like doing it though, here’s a script I’ve made that’s a little more advanced:

#!/bin/bash
#
## Script to extend your Acer Aspire One (AA1) desktop
#
#
## Press Fn-F5 on your AA1 till both monitors are
## active then run this script. Usage is like so:
## ./dual_desktop.sh
##
## Example: ./dual_desktop.sh 800x600 left

XRANDR=`which xrandr`

if [ "$1" = "1280x1024" ] || [ "$1" = "1024x768" ] || [ "$1" = "800x600" ] && [ "$2" = "left" ] || [ "$2" = "right" ]; then

echo "Setting resolution to $1 and alignment to $2."
$XRANDR -s $1
$XRANDR --output LVDS --$2-of VGA --auto

else
$XRANDR -s 1280x1024
$XRANDR --output LVDS --left-of VGA --auto
echo "No or invalid resolution given - setting resolution to 1280x1024 and alignment to left."

fi
If you want a resolution of 800×600 on your external monitor, and your Acer Aspire One is on your right-side, run the script like so:
$ ./dual_desktop.sh 800x600 right

Done.

To be continue. Stay tuned! Continue here..
Labels:

Cannot Download Acer Driver

Monday, May 18, 2009 Posted by Eric Lee 2 comments

Dear all, if u can't find / download acer driver or what u are looking for, please let me know by using below comment box. I will bring it to you download link for that drivers or u will get great link to solve your problem. Please! Dont forget to bookmarks this blog ( CTRL + D ). Continue here..

Acer Aspire 5536 Driver for Windows XP

Posted by Eric Lee 0 comments

Download Driver Acer Aspire 5536

Audio Realtek 5.10.0.5791 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

Bluetooth Broadcom 5.1.0.4500 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

Camera Chicony 5.8.49001.2 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

Camera Suyin 5.8.48.500 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

CardReader Realtek 6.0.6000.74 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

CPU AMD 1.3.2.0 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

Fingerprint AuthenTec 6.1.22 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

Lan Broadcom 11.18.0.0 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

Modem Conexant 7.62.00 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

TouchPad ALPS 7.4.2015.102 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

TouchPad Synaptics 12.1.0.0 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download)

USB AMD 1.0.7.0 XP (x86)
Acer Aspire 5536 5536G Windows XP Driver
(Download) Continue here..
Labels:

Acer Aspire 5738Z-423G25Mn Notebook PC Windows XP Driver

Posted by Eric Lee 0 comments

Welcome to acertrick.blogspot.com Download Acer Driver! Please Bookmarks this site (CTRL + D)

Driver

3G Qualcomm Driver
Size: 10.71 MB
Download: 3G_QUALCOMM_6.0.5.4_Vistax64Vistax86XPx86

Intel Chipset Driver
Size: 2.20 MB
Download: Chipset_Intel_9.0.0.1011_Vistax64Vistax86XPx86

Intel AHCI SATA Driver
Size: 27.33 MB
Download: AHCI_Intel_8.5.0.1032_Vistax64Vistax86XPx86

Intel Graphics Display VGA Driver
Size: 20.04 MB
Download: VGA_Intel_6.14.10.5016_XPx86_A.zip

Nvidia Graphics Driver
Size: 59.87 MB
Download: VGA_NVIDIA_6.14.11.7930_XPx86

Bluetooth Driver
Size: 47.56 MB
Download: Bluetooth_Broadcom_5.1.0.4500_XPx86

Audio Driver for Windows XP
Size: 32.44 MB
Download: Audio_Realtek_5.10.0.5791_XPx86

Launch Manager Driver
Size: 3.67 MB
Download: LaunchManager_Dritek_2.0.02_Vistax64Vistax86XPx86

Synaptics & Alps Touchpad Driver
Size: 24.91 MB
Download: Touchpad.zip

Broadcom Ethernet Lan Card driver
Size: 19.73 MB
Download: Lan_Broadcom_11.18.0.0_XPx86

Card Reader Driver for Windows XP
Size: 6.84 MB
Download: CardReader_Realtek_6.0.6000.74_XPx86

Modem Driver for Windows XP
Size: 2.31 MB
Download: Modem_LSI_2.1.77.9_XPx86

Atheros Wireless WLAN
Size: 28.33 MB
Download: Wireless LAN_Atheros_7.6.1.221_XPx86

Intel Wifi Wireless WLAN Driver
Size: 29.70 MB
Download: Wireless LAN_Intel_12.1.2.1_Vistax64Vistax86XPx86_A.rar (extract using winrar)

Ralink Wireless WLAN Driver
Size: 3.04 MB
Download: Wireless LAN_Ralink_1.1.5.0_XPx86_A.zip

Suyin and Chicony Webcam Driver
Size: 6.04 MB
Download: Camera.zip

Continue here..
Labels:

Acer Aspire 4710 / 4710G Windows XP drivers (Acer Taiwan and Euro)

Wednesday, May 6, 2009 Posted by Eric Lee 1 comments

Acer Aspire 4710 / 4710G Windows XP drivers (Acer Taiwan) :

Realtek Audio driver (Download)

Bluetooth driver (Download)

WebCam Suyin driver
(Download)

Card Reader driver
(Download)

Chipset Intel driver
(Download)

LAN driver
(Download)

Modem driver
(Download)

VGA ATI driver
(Download)

VGA Intel driver
(Download)

Wireless LAN Atheros
driver (Download)

Wireless LAN Broadcom driver (Download)

Wireless LAN Intel driver (Download)

Touchpad Synaptics driver
(Download)

WebCam Bison driver
(Download)

WebCam Application
(Download)

Launch Manager (Download)


Acer Aspire 4710 / 4710G Windows XP drivers (Acer Euro) :

Realtek Audio driver (Download)

Bluetooth driver (Download)

WebCam Suyin driver
(Download)

Card Reader driver
(Download)

Chipset Intel driver
(Download)

LAN driver
(Download)

Modem driver
(Download)

VGA ATI driver
(Download)

VGA Intel driver
(Download)

Wireless LAN Atheros
driver (Download)

Wireless LAN Broadcom driver (Download)

Wireless LAN Intel driver (Download)

WebCam Chicony
driver (Download)

Touchpad Synaptics driver
(Download)

WebCam Bison driver
(Download)

WebCam Chicony Application
(Download)

Launch Manager (Download)
Continue here..

Acer Aspire M3710 M5711 XP & Vista Drivers

Posted by Eric Lee 1 comments

M3710



Acer Aspire M3710 M5711 Windows XP x86 (32bit) Drivers :

Chipset nforce MCP7A 32bit
Acer Aspire M3710 M5711 Windows XP 32bit driver

Windows XP 32-bit Driver Versions:
* Ethernet Driver (v67.86.2) WHQL
* NAM (v.67.93)
* Sata/IDE Driver (v10.3.0.42) WHQL
* RAID Driver (v10.3.0.42) WHQL
* RAIDTOOL (v10.3.0.42)
* SM Bus (v4.69) WHQL
* SMU (v1.61) WHQL
* GPU Driver (v178.13) WHQL
* AwyMode driver (v.6.0.6000.107)WHQL
* Installer (v6.14)
(Download)


VGA NVIDIA 181.22 whql
Acer Aspire M3710 M5711 Windows XP 32bit driver
(Download)

Audio Realtek
Acer Aspire M3710 M5711 Windows XP 32bit driver
part1 (Download)
part2 (Download)
You need Winrar to extract it

HDAudio NVIDIA
Acer Aspire M3710 M5711 Windows XP 32bit driver
(Download) (Mirror)



Acer Aspire M3710 M5711 Windows XP x64 (64bit) Drivers :

Chipset nforce MCP7A 64bit
Acer Aspire M3710 M5711 Windows XP 64bit driver

Windows XP 64-bit Driver Versions:
* Ethernet Driver (v67.86.2) WHQL
* NAM (v.67.93)
* Sata/IDE Driver (v10.3.0.42) WHQL
* RAID Driver (v10.3.0.42) WHQL
* RAIDTOOL (v10.3.0.42)
* SM Bus (v4.69) WHQL
* SMU (v1.61) WHQL
* GPU Driver (v178.13) WHQL
* AwyMode driver (v.6.0.6000.107)WHQL
* Installer (v6.14)
(Download)


VGA NVIDIA 181.22 whql
Acer Aspire M3710 M5711 Windows XP 64bit driver
(Download)

Audio Realtek
Acer Aspire M3710 M5711 Windows XP 64bit driver
part1 (Download)
part2 (Download)
You need Winrar to extract it

HDAudio NVIDIA
Acer Aspire M3710 M5711 Windows XP 64bit driver
(Download)







Acer Aspire M3710 M5711 Windows Vista x86 (32bit) Drivers :

Chipset nforce MCP7A 32bit
Acer Aspire M3710 M5711 Windows Vista 32bit driver

This Vista 32-bit MCP7A nForce driver package consists of the following components:
Ethernet Driver (v67.86.2) WHQL
NAM (v.67.93)
SataIDE Driver (v10.3.0.42) WHQL
RAID Driver (v10.3.0.42) WHQL
RAIDTOOL (v10.3.0.42)
SMBus (v4.69) WHQL
SMU (v1.61) WHQL
GPU Driver (v176.36) WHQL
AwyMode driver (v.6.0.6000.107)WHQL
Installer (v6.14)
(Download)
for newer version (GPU Driver (v178.13) WHQL), download here (Download)

VGA NVIDIA 178.33
Acer Aspire M3710 M5711 Windows Vista 32bit driver
(Download) newer version (181.22) Vista 32bit (Download)

Audio Realtek 5.0.1.5704
Acer Aspire M3710 M5711 Windows Vista 32bit driver
(Download)

HDAudio NVIDIA
Acer Aspire M3710 M5711 Windows Vista 32bit driver
(Download)


Acer Aspire M3710 M5711 Windows Vista x64 (64bit) Drivers :

Chipset nforce MCP7A 64bit
Acer Aspire M3710 M5711 Windows Vista 64bit driver
(Download)
for newer version download here (Download)

VGA NVIDIA 178.33
Acer Aspire M3710 M5711 Windows Vista 64bit driver
(Download)
for newer version (181.22) download here (Download)

Audio Realtek
Acer Aspire M3710 M5711 Windows Vista 64bit driver
part1 (Download)
part2 (Download)
You need Winrar to extract it

HDAudio NVIDIA
Acer Aspire M3710 M5711 Windows Vista 64bit driver
(Download)



Aspire M5711
Continue here..

Aspire 4330 or 4330Z Windows XP

Posted by Eric Lee 1 comments





IMSM_V8.0.0.1039_WHQL Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror) - follow this guide to slipstream ahci driver to Windows XP CD

Chipset_Intel_V8.7.0.1007_WHQL Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

VGA_Intel_V6.14.10.4969(14.36.0.4969)_XP(WHQL)x32 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

VGA_Intel_V6.14.10.4969(14.36.0.4969)_XP(WHQL)x64 Driver for Aspire 4330 4330Z XP 64 Bit
(Download) (Mirror)

Modem_Agere_V2.1.87.0_WHQL Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

LAN_Realtek_V5.698.701.2008_XP_WHQL Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

Touch Pad Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

VGA_NV_6.14.11.7609_XPx32 Driver for Aspire 4330 4330Z Win XP 32 Bit
(Download) (Mirror)

VGA_NV_6.14.11.7609_XPx64 Driver for Aspire 4330 4330Z Win XP 64 Bit
(Download) (Mirror)

Audio Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

CardReader_JMicro_V1.00.11.02 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

CIR_ENE_V2.5.0.0 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

JAL90 Launch Manager_Dritek_v2.0.06 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

JAW50 Launch Manager_Dritek_v2.0.02 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

WLAN_Atheros_V7.6.0.239Driver for Aspire 4330 4330Z XP
(Download) (Mirror)

WLAN_Broadcom_V4.170.25.19 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

WLAN_Intel Shirley Peak_V12.0.0.78 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

WLAN_Ralink_V1.1.5.0 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

Camera_Bison_V7.96.701.13 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

Camera_Chicony_V5.8.33.402 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

Camera_Suyin_V5.8.32.500 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

FingerPrint_Authentec_V6.0.00.17 Driver for Aspire 4330 4330Z Win XP
(Download) (Mirror)

Bluetooth_Broadcom_v5.1.0.4500_XP_x32 Driver for Aspire 4330 4330Z Win XP 32 Bit
(Download) (Mirror)

Bluetooth_Broadcom_v5.1.0.4500_XP_x64 Driver for Aspire 4330 4330Z Win XP 64 Bit
(Download) (Mirror)

VGA_ATi Driver for Aspire 4330 4330Z XP
(Download) (Mirror)
Continue here..

Aspire 4730 and 4730Z XP Driver

Posted by Eric Lee 0 comments





Acer Aspire 4730 4730Z Windows XP Drivers
:
(Compatible with Aspire 4330)

Attention: If you want to install XP to Aspire 4730 or Aspire 4330 use this IDE Mode on Bios System

IMSM_V8.0.0.1039_WHQL Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

Chipset_Intel_V8.7.0.1007_WHQL Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

VGA_Intel_V6.14.10.4969(14.36.0.4969)_XP(WHQL)x32 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

VGA_Intel_V6.14.10.4969(14.36.0.4969)_XP(WHQL)x64 Driver for Aspire 4730 4730Z XP 64 Bit
(Download) (Mirror)

Modem_Agere_V2.1.87.0_WHQL Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

LAN_Realtek_V5.698.701.2008_XP_WHQL Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

Touch Pad Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

VGA_NV_6.14.11.7609_XPx32 Driver for Aspire 4730 4730Z Win XP 32 Bit
(Download) (Mirror)

VGA_NV_6.14.11.7609_XPx64 Driver for Aspire 4730 4730Z Win XP 64 Bit
(Download) (Mirror)

Audio Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

CardReader_JMicro_V1.00.11.02 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

CIR_ENE_V2.5.0.0 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

JAL90 Launch Manager_Dritek_v2.0.06 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

JAW50 Launch Manager_Dritek_v2.0.02 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

WLAN_Atheros_V7.6.0.239Driver for Aspire 4730 4730Z XP
(Download) (Mirror)

WLAN_Broadcom_V4.170.25.19 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

WLAN_Intel Shirley Peak_V12.0.0.78 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

WLAN_Ralink_V1.1.5.0 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

Camera_Bison_V7.96.701.13 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

Camera_Chicony_V5.8.33.402 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

Camera_Suyin_V5.8.32.500 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

FingerPrint_Authentec_V6.0.00.17 Driver for Aspire 4730 4730Z Win XP
(Download) (Mirror)

Bluetooth_Broadcom_v5.1.0.4500_XP_x32 Driver for Aspire 4730 4730Z Win XP 32 Bit
(Download) (Mirror)

Bluetooth_Broadcom_v5.1.0.4500_XP_x64 Driver for Aspire 4730 4730Z Win XP 64 Bit
(Download) (Mirror)

VGA_ATi Driver for Aspire 4730 4730Z XP
(Download) (Mirror)
Continue here..

Aspire 4930 XP Driver Mobile PC

Posted by Eric Lee 0 comments




Download Acer Aspire 4930/4925 Notebook nVidia VGA Driver For Win XP

Description: nVidia VGA Driver for Win XP
Size:154,460 KB
Download: VGA_NV_V6.14.11.7561_XP.zip


Download Acer Aspire 4930/4925 Notebook Intel VGA Driver For Win XP

Description: Intel VGA Driver for Win XP
Size:35,310 KB
Download: VGA_Intel_V6.14.10.4950_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook ATI VGA Driver For Win XP

Description: VGA ATI Driver for Win XP
Size: 96,400 KB
Download: VGA_ATI_v8.479.1.6.zip


Download Acer Aspire 4930/4925 Notebook Intel Chipset Driver for Win XP

Description: Chipset_Intel_V8.7.0.1007 Driver for XP
Size: 2,090 KB
Download: 01. Chipset_Intel_V8.7.0.1007_WHQL_XPx32.zip


Download Acer Aspire 4930/4925 Notebook Realtek Audio Driver For Win XP

Description: Realtek Audio Driver for Win XP
Size: 42,610 KB
Download: Audio_Reltek_V5.0.1.5624_XP(WHQL).zip


Download Acer Aspire 4930/4925 Notebook Modem Agere Driver For Win XP

Description: Modem_Agere_V2.1.87.0 Driver for XP
Size: 1,420 KB
Download: 04. Modem_Agere_V2.1.87.0_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Realtek Lan Driver For Win XP

Description: LAN_Reaktek_V5.686.0103.2008 Driver for XP
Size: 4,520 KB
Download: 05. LAN_Reaktek_V5.686.0103.2008_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Touchpad APLS Driver For Win XP

Description: TP_Alps_V7.0.1101.18 Driver for XP
Size: 8,990 KB
Download: 06. TP_Alps_V7.0.1101.18_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Touchpad Synaptics Driver For Win XP

Description: TP_Synaptics_v11.0.2.0 Driver for XP
Size: 25,120 KB
Download: 06. TP_Synaptics_v11.0.2.0_WHQL_XPx32.zip


Download Acer Aspire 4930/4925 Notebook Card Reader Driver For Win XP

Description: CardReader_JMicro_V1.00.11.02 Driver for XP
Size: 2,870 KB
Download: 07. CardReader_JMicro_V1.00.11.02_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Finger Print Reader Driver For Win XP

Description: FingerPrint_Authentec_V6.0.00.15 Driver for XP
Size: 80,960 KB
Download: 08 FingerPrint_Authentec_V6.0.00.15_WHQL_XPx32.zip


Download Acer Aspire 4930/4925 Notebook CIR (InfraRed) Driver For Win XP

Description: CIR_ENE_V2.5.0.0 Driver for XP
Size: 2,810 KB
Download: CIR_ENE_V2.5.0.0_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Launch Manager For Win XP

Description: LaunchManager_Dritek_V2.0.01 Driver for XP
Size: 2,760 KB
Download: 10. LaunchManager_Dritek_V2.0.01_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Atheros Wireless Lan Driver for Win XP

Description: WLAN_Atherors_V5.3.0.85 Driver for XP
Size: 13,350 KB
Download: 11. WLAN_Atherors_V5.3.0.85_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Broadcom Wireless Lan Driver for Win XP

Description: WLAN_Broadcom_V4.170.25.19 Driver for XP
Size: 4,140 KB
Download: 11. WLAN_Broadcom_V4.170.25.19_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Intel Wireless Lan Driver for Win XP

Description: WLAN_Intel Shirley Peak_V12.0.0.73 Driver for XP
Size: 6,970 KB
Download: 11. WLAN_Intel Shirley Peak_V12.0.0.73_WHQL_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook Camera (BISON) Driver For Win XP

Description: Camera_Bison_V7.96.701.13 Driver for Xp
Size: 10,690 KB
Download: 12. Camera_Bison_V7.96.701.13_WHQL_XPx32.zip


Download Acer Aspire 4930/4925 Notebook Camera (Chicony) Driver For Win XP

Description: Camera_Chicony_V5.8.33.402 Driver for XP
Size: 14,070 KB
Download: Camera_Chicony_V5.8.33.402_WHQL_XPx32.zip


Download Acer Aspire 4930/4925 Notebook Camera (Suyin) Driver For Win XP

Description: Camera_Suyin_V5.8.32.500 Driver for XP
Size: 20,850 KB
Download: Camera_Suyin_V5.8.32.500_WHQL_XPx32.zip


Download Acer Aspire 4930/4925 Notebook Bluetooth Driver For Win XP

Description: Bluetooth_Broadcom_V5.1.0.4500 Driver for XP
Size: 98,600 KB
Download: Bluetooth_Broadcom_V5.1.0.4500_XPx32×64.zip


Download Acer Aspire 4930/4925 Notebook IMSM

Description: IMSM_Intel_V8.0.0.1039 Driver for XP
Size: 415KB
Download: IMSM_Intel_V8.0.0.1039_WHQL_XPx32.zip

Continue here..

Aspire 4935-642G25 Windows XP Drivers

Posted by Eric Lee 0 comments





Chipset Intel
Acer Aspire 4935 4935G Windows XP Driver
(Download)

Modem Conexant
Acer Aspire 4935 4935G Windows XP Driver
(Download)

Webcam Suyin Crystal Eye
Acer Aspire 4935 4935G Windows XP Driver
(Download)

Webcam Bison Crystal Eye
Acer Aspire 4935 4935G Windows XP Driver
(Download)

WLAN Atheros
Acer Aspire 4935 4935G Windows XP Driver
(Download)

WLAN Broadcom
Acer Aspire 4935 4935G Windows XP Driver
(Download)

WLAN Intel
Acer Aspire 4935 4935G Windows XP Driver
(Download)

MIR ENE
Acer Aspire 4935 4935G Windows XP Driver
(Download)

LAN Atheros AR8121/AR8113/AR8114 Gigabit/Fast Ethernet Controller
Acer Aspire 4935 4935G Windows XP Driver
(Download)

Launch Manager
Acer Aspire 4935 4935G Windows XP Driver
(Download)

Card Reader
Acer Aspire 4935 4935G Windows XP Driver
(Download) Continue here..