Popular Posts
-
From the gcc man page: -dCHARS CHARS is a sequence of one or more of the following characters, and must not be preceded by a spac...
-
I spent a scary night yesterday trying to fix my Ubuntu installation. I was a victim for the bug related to libc6. The problem is that afte...
-
Today I had the opportunity to attend a session given by Dr. Moustafa Youssef on his research. The key point in his talk was about detectin...
-
In 1975 Widrow et. al. introduced a scientific paper about Adaptive Noise Cancellers (ANCs). Since then, ANCs have been used extensively in...
-
Recently I needed to add a header/footer to an existing PDF file. With some help from this link, I figured it out: http://coding.derkeiler.c...
Wednesday, July 16, 2008
Sunday, July 6, 2008
Add Circular Scrolling (and more!) to your laptop touchpad
From the Chinese Linux University!
http://www.chineselinuxuniversity.net/articles/13049.shtml
Add to /etc/X11/xorg.conf (or whatever your xorg.conf is at)
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "CircularScrolling" "on"
Option "CircScrollTrigger" "3"
EndSection
Be sure to have Synaptics added to the Server Layout
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
EndSection
http://www.chineselinuxuniversity.net/articles/13049.shtml
Add to /etc/X11/xorg.conf (or whatever your xorg.conf is at)
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "CircularScrolling" "on"
Option "CircScrollTrigger" "3"
EndSection
Be sure to have Synaptics added to the Server Layout
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
EndSection
Tuesday, July 1, 2008
Dealing with Debian source packages
I found this interesting post, quoting:
The dpkg-source utility is found in dpkg-dev package.apt-get build-dep glibc
apt-get source -b glibc
should work
or, if you already have the build-dependencies and source files
downloaded (.orig.tar.gz, .diff.gz, and .dsc):
dpkg-source -x glibc*.dsc
cd glibc-*
make -f debian/rules build
randolph
--
Randolph Chung
Debian GNU/Linux Developer, hppa/ia64 ports
http://www.tausq.org/
Subscribe to:
Posts (Atom)