Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kevinmstein

Pages: [1]
1
Hardware Specific / Installing Ubermix on Acer C720 Chromebook
« on: April 01, 2014, 10:48:14 AM »
I'm having some difficulty installing ubermix 1.32 and 1.4 on an Acer C720 Chromebook.  I'm following the instructions on the wiki, but can't seem to get it to boot into ubermix.  I've verified that the install-ubermix.sh scripts correctly partitions the drive, but there is only a maximum of 10GB available according to the script.  After the reboot and Chrome "repairs" itself, I re-run the script and it appears to image correctly, but then the device won't boot.  It comes to the OS Verification screen, beeps twice, then reboots.  It is stuck in that loop.

I've restored it using the Google instructions to get it back to a working Chromebook, then retried the ubermix install which fails exactly the same way (the reboot loop and no booting).

To verify if Ubuntu would run on the device I tried installing it from the instructions found here: http://www.linux.com/learn/tutorials/764181-how-to-install-linux-on-an-acer-c720-chromebook and it does work, but required the Legacy booting option (at the OS Verification Screen you have to press Ctrl+L).

At this point I am wondering if I am doing something wrong or if there are extra steps I am missing for this model.

2
Here's what we found that eliminated about 96% of the issues:

I created a file named 52-synaptics-more-quirks.conf and pushed it out via the Network-Autostart script to the location: /usr/share/X11/xorg.conf.d/

The file makes changes to the Synaptic Client (Touchpad Driver) for the two models of touchpad that ship with the Acer-V5-131's.  For the Synaptic Touchpad it modifies the settings for Hysteresis which is the distance away from the touchpad a finger can be above and still be detected.  For the Elantech is reduces the sensitivity of the touchpad so that more pressure is required to move the mouse.

For the remaining 4% of our classrooms that still have issues (only 35 devices, out of over 1000 deployed) we ended up purchasing external mice for about $7 a mouse and fixed the issue that way.

Contents of the file
Code: [Select]
Section "InputClass"
Identifier "Acer Aspire V5-131"
MatchIsTouchpad "on"
MatchProduct "SynPS/2 Synaptics TouchPad"
MatchDevicePath "/dev/input/event*"
Driver "synaptics"
Option "HorizHysteresis" "150"
Option "VertHysteresis" "150"
EndSection

Section "InputClass"
Identifier "Acer Aspire V5-131 Elan"
MatchIsTouchpad "on"
MatchProduct "ETPS/2 Elantech Touchpad"
MatchDevicePath "/dev/input/event*"
Driver "synaptics"
Option "FingerLow" "10"
Option "FingerHigh" "20"
EndSection


3
Hardware Specific / Aspire V5-131 Touchpad Issues. Loss of control.
« on: February 24, 2014, 08:13:08 AM »
I'm having a problem with my Acer Aspire V5-131's Touchpads that appears to be related to Ubermix 1.32, to which we recently updated.  While students are using the netbooks the mouse cursor starts to jitter on the screen (and sometimes slowly drifts to the left) without anyone touching it.  Turning the mouse off and then on using the Fn+F7 does not fix the issue.  Observing a classroom with the issue showed that about of third of the 40 netbooks had the issue over the course of 4 class periods.  The teacher in the room reported that it apparently also occurred when the netbooks were running Ubermix 1.082.

While the issue is occurring, the touchpad acts like it is in multi-touch mode even if only a single finger is used.  Trying to move the mouse with a single finger ends up just scrolling the page or launcher.  None of the settings configurable using "synclient" command utility solve the problem, but if two finger scrolling is turned off the mouse just totally stops responding to input.

I have noticed that those netbooks which have the problem more often are using Synaptics Touchpad hardware instead of the ELANtech Touchpad (which is also a shipping hardware config).

The only working solution is to close the lid of the netbook, wait 5-10 seconds, then open the lid.  Once the netbook resumes the problem no longer exists. 

One additional piece of information is that neither the tech support person at the site nor I can get the problem to happen.  It only happens to students.

Pages: [1]