I’m moving this blog to my own domain. Please follow the link www.hollyghozi.com. See you there!

FAT32: Windows XP to format 40GB USB Harddisk
April 5, 2009It’s already known that Windows XP only support maximum 32GB for FAT32. As usual, our Uncle Google has given me more than enough links regarding this issue.
After went to some link and reading some information. I found a tool to format FAT32 in Windows 2000/XP/Vista. The tool is called Fat32Formatter, and can be found in : http://tokiwa.qee.jp/EN/Fat32Formatter/index.html.
The tools has small footprint, it’s 388 kb in size, and has a simple & straightforward interface. This
save me a lot of time, since I can run the tool right from the downloaded zip, without require any installation. And the most of all, it’s free!

PowerHub: Enable JConsole to monitor PowerHub
March 20, 2009JDK provide Java Monitoring and Management Console (JConsole) tool to provide information on performance and resource consumption of application running in Java platform using Java Management Extension (JMX) technology.
To enable JMX in PowerHub add lines below to $PE_HOME/bin/runServer:
-Dcom.sun.management.jmxremote \
-Dcom.sun.management.jmxremote.port=8024 \
-Dcom.sun.management.jmxremote.authenticate=true \
-Dcom.sun.management.jmxremote.ssl=false \
Notice:
1. JConsole is part of JDK default installation
2. “-Dcom.sun.management.jmxremote” is minimum parameter to enable JMX for local console. But this is not advisable.
3. Remote connect of JConsole can be achieve by setting the other three parameters
4. Remote connect use port. Each Java Application should be started with a separate port. e.g: 8001, 8002, 8003,…


