I have installed Gutsy on my new X61s and have been working on getting everything to function. Im sure some of this will apply to other models.
Things that work: Graphics (full 3d support), a number of the hotkeys, wifi, screen brightness adjustment, sound/volume.
I have been able to get CPU scaling, tap to click (with the trackpoint), and middle mouse button scroll to all work fine. I am still working on getting suspend/hibernate/sleep to work, and hotkeys working (although a surprising number work right away).
If anyone has anything related to using Gutsy to ask/share/talk about that would be great.
I have been working on a list of how to get some things working (with intent to post in the Ubuntu forums) and I hope it might be of use to someone here.
1. Install ondemand frequencey governor, which modulates your CPU frequency (saving battery and reducing heat).
Code:
(1) sudo modprobe acpi-cpufreq
(2) sudo modprobe cpufreq_ondemand
(3) sudo aptitude install sysfsutils
(4) sudo -s
(5) echo "devices/system/cpu/cpu0/cpufreq/scaling_governor=ondemand" >> /etc/sysfs.conf
(6) reboot
Add the frequency monitor to your panel (right click your panel>add to panel>system and hardware>CPU frequency scaling monitor.
credit: mbsullivan
2. Enable CPU frequency scaling. Doing this will give you the option to scale your CPU yourself (ondemand will modulate your CPU by default if you dont change it manually).
Code:
sudo dpkg-reconfigure gnome-applets
Answer "Yes" to the question regarding setting the suid of thecpufreq-selector executable. Now, by left-clicking on the CPU FrequencyMonitor Applet, you can choose the frequency of your processor.
credit:
http://ubuntu.wordpress.com/2005/11/04/ ... y-scaling/3. Getting tap to click to work with a trackpoint.
Code:
sudo -s
echo -n 1 > /sys/devices/platform/i8042/serio1/press_to_select
In order to make sure it workes every time you reboot:
Code:
sudo aptitude install sysfsutils
And add the following to the end of /etc/sysfs.conf:
Code:
devices/platform/i8042/serio1/press_to_select=1
Reboot, if tap to click does not remain working then follow these steps:
Code:
sudo gedit /etc/rc.local
Add the following line before "exit 0"
Code:
echo -n 1 > /sys/devices/platform/i8042/serio1/press_to_select
credit: mbsullivan, insaneinside
4. Getting middle mouse button scroll to work.
Replace the mouse entry of your /etc/X11/xorg.conf with the following (its a good idea to back up your xorg.conf before making any changes):
Code:
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2" # IMPS/2 is not recommend for TrackPoints
Option "Device" "/dev/input/mice"
Option "EmulateWheel" "on"
Option "EmulateWheelTimeout" "200"
Option "EmulateWheelButton" "2"
Option "YAxisMapping" "4 5"
Option "XAxisMapping" "6 7"
EndSection
Now reboot, and if you hold down your third mouse button, you should be able to scroll up and down using the trackpoint.
credit: mbsullivan
Note: This will also cause you to page back and fourth (at least within Firefox) when any pressure is put left or right. You can prevent this by changing some values in about:config in Firefox.
enter about:config into the address bar. Then change the values of the following to these:
mousewheel.horizscroll.withnokey.action = 0;
mousewheel.horizscroll.withnokey.numlines = 1;
credit: pibach
5. Enabling Compiz Fusion with Intel X3100 graphics
Add this line:
Code:
SKIP_CHECKS=yes
To the end of this file:
Code:
sudo gedit /etc/xdg/compiz/compiz-manager
Note: The Intel X3100 graphics are blacklisted because video playback does not work. I use compiz occasionally on my X61s and most everything works (that comes with the compiz settings manager) although the rain effect will lock up things.
You will have to have the compiz settings manager installed (search the synaptic package manager) to get the extra compiz options, it will add a new custom option to your appearance settings.