October 21st, 2011 — mac
Today I upgraded my VMWare Fusion from verison 3 to version 4. The most critical change I’ve found so far is in the location for networking/dhcp/nat configuration files. Fusion 4 now locates those config files in: /Library/Preferences/VMware Fusion/vmnet8.
http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1026510
I will add more info to this post as soon as I have more to share. I’m hoping Fusion 4 is more efficient in utilizing the host resources and better performing. I already like the interface design that is more integrated and seamless for Lion.
April 23rd, 2011 — adobe
September 10th, 2010 — unix
One day, I started seeing an odd pop up every time I started google chrome on my linux box at work. If I just click the ‘OK’ button, chrome would work just fine. The pop up is quite annoying though.

After some research, I found that this is caused by NFS server locking your profile. My home directory on my linux box is located on an NFS mounted partition (part of an NIS infrastructure). Its quite known that for some reasons an NFS server can lock SQLLite files and never reqlinquish the lock. That’s precisely what happened to my chrome profile.
To remove the lock, you would need to, kind of, relocate the file nodes. You can do the following to achieve that:
- cd ~/.config/google-chrome
- mv Default Default.bak
- cp -r Default.bak Default
- restart your google chrome browser
- then you can remove the old Default.bak directory
August 25th, 2010 — mysql
Today, one of our MySQL database suddenly went unresponsive. The first thing I noticed was the following lines in the error.log:
InnoDB: Unable to lock /path/to/ibdata1, error: 11
InnoDB: Check that you do not already have another mysqld process
InnoDB: using the same InnoDB data or log files.
Upon further investigation, I found a not perfectly matched issue but does look similar: http://forums.mysql.com/read.php?22,22344,24497#msg-24497. I took a chance and did the following:
Continue reading →
August 21st, 2010 — windows
At work, I had just received a new Dell desktop computer pre-installed with Windows 7. First thing I did was to ‘join’ the computer into our internal Active Directory domain. That was all good and I was able login to my desktop using my domain user id. Then I started installing software and ‘personalizing’ my windows 7. At some point, for some stupid reasons, I somehow removed my user profile folder (C:\Users\{myuserid}) … oops
From that point on, I wasn’t able to persistently store any personalization. Everytime I logged off and re-logged in, a new ‘temporary’ profile is created. On every logged in, windows would present me with a ‘warning’ message that in essence said it was not able to find my ‘profile’. I did a few things to try to fix this issue, including:
- manually adding C:\Users\myuserid folder
- removing/re-adding my domain user to the desktop
- detaching/re-joining the desktop to the domain
None helped.
Continue reading →