RSS
 

Archive for the ‘Ubuntu’ Category

GEdit Latex plugin

01 Jul

GEdit latex plugin is a wonderful plug in to write scientific documents with out the load of fully dedicated IDEs.

This plugin assists you in composing and compiling LaTeX documents and managing BibTeX bibliographies.

It is hosted on SourceForge.net.

 
No Comments

Posted in Ubuntu

 

Scrolling with the Thinkpad's TrackPoint in Ubuntu 9.04 Jaunty

30 Jun

I think scrolling using the middle button + TrackPoint was broken for a while, although it is now fixed. to fix it instead of modifying your xorg.conf, create a new file called /etc/hal/fdi/policy/mouse-wheel.fdi with the following contents:

<match key="info.product" string="TPPS/2 IBM TrackPoint">
<merge key="input.x11_options.EmulateWheel" type="string">true</merge>
<merge key="input.x11_options.EmulateWheelButton" type="string">2</merge>
<merge key="input.x11_options.XAxisMapping" type="string">6 7</merge>
<merge key="input.x11_options.YAxisMapping" type="string">4 5</merge>
<merge key="input.x11_options.ZAxisMapping" type="string">4 5</merge>
<merge key="input.x11_options.Emulate3Buttons" type="string">true</merge>
</match>

Then restart your computer.

I have tested this method on my X200 and it looks working fine.
[ad#Ubuntu 9.04]

 
No Comments

Posted in Ubuntu

 

Kernel shared memory increase

10 Jun

I have to increase your “kernel.shmmax” to allow large log data to be shared among processes. To do that I need to modify the “/etc/sysctl.conf” file and add a new line at the end as follows:

kernel.shmmax = 134217728 #this is for 128Mb of max. shared memory blocks

After changing the file, run the command:
$sudo sysctl -p


 
No Comments

Posted in Ubuntu