Thursday, September 4, 2008

Compile error for vmhgfs module

  • wget http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-2008.08.08-109361.tar.gz
  • cd open-vm-tools-2008.08.08-109361/modules/linux
  • mv vmhgfs vmhgfs-only
  • tar to vmhgfs.tar
  • cd /usr/lib/vmware-tools/modules/source/
  • mv vmhgfs.tar vmhgfs.backup.tar
  • cp the new vmhgfs.tar to the folder

Saturday, June 7, 2008

Enable Japanese Input for fedora

Need install SCIM-Anthy.
#yum install scim-anthy

Thursday, May 29, 2008

Enable Intellimouse Wheel Support in Linux

To enable the wheel function for mouse with wheel in Linux, simply add this line in
/etc/X11/xorg.conf Section "InputDevice".
Option "ZAxisMapping" "4 5"

Like this,

Section "InputDevice"
...
Option "ZAxisMapping" "4 5"
EndSection

Monday, April 21, 2008

Code::Blocks 8.02

Long time no watch on Code::Blocks, and I was surprised that Code::Blocks finally released a formal version now - 8.02!
The version numbering scheme for Code::Blocks was changed too as announced on 18 Feb., 2008. The new version numbering scheme will follow the "Year.Month" style, also known as the "Ubuntu version scheme". Great!

Reconfigure VMware Tools after Linux kernel updated

To enable a Linux environment, VMware Player is used in my PC.
I update my Linux often. Sometime after update, I can't start up the network.
It is important to recompile the VMware Tools in the case.
  1. sudo vmware-config-tools.pl
  2. Now it is time to reconfigure the network interface setting by using following commands.
    sudo -s
    /etc/init.d/networking stop
    rmmod pcnet32
    rmmod vmxnet
    depmod -a
    modprobe vmxnet
    /etc/init.d/networking start