Today I tried to install Ubuntu 13.04 on Parallels 7. But when booting using the installation disk, I got error message about Soft lockup.
Seems that the solution is very straightforward: remove the tick on the "Show battery in Linux" from the dialog of Options > Optimizations.
Credit to the thread from here.
That's all :)
Thursday, October 10, 2013
Monday, July 01, 2013
How to have a similar mouse acceleration on Mac OSX with Windows
Have you ever noticed that the movement of mouse pointer on Mac OSX is somewhat different from that of on Windows?
Before I started using Mac OSX around 3 years ago, I have been a heavy user of Windows and Linux for years. Probably this is just my personal preference, but I feel that the acceleration of mouse movement on Mac OSX is not as comfortable as on Windows. I have been looking for the solution to get the same acceleration "feel" ever since but found nothing comparable to Windows. I have tried several software that can control mouse acceleration on Mac OSX, but still not satisfied. Even there are lengthy discussion on Apple forum debating this matter.
Gladly, there are wonderful engineers that started to develop the promising solution: http://smoothmouse.com/
If anyone feel uncomfortable with the acceleration of mouse on Mac OSX, I would suggest to try this software. It surpasses any other softwares (includes the paid one) that I have tried to make my mouse movement on Mac OSX as similar as on Windows. I hope that Apple could notice this little yet important matter, especially for new users who were heavy users of Windows, and provide built-in solution on the next release of OSX. I could understand that not all users notice the difference. But It is somewhat a shame on Apple for not noticing this little matters for years.
That's all :)
Before I started using Mac OSX around 3 years ago, I have been a heavy user of Windows and Linux for years. Probably this is just my personal preference, but I feel that the acceleration of mouse movement on Mac OSX is not as comfortable as on Windows. I have been looking for the solution to get the same acceleration "feel" ever since but found nothing comparable to Windows. I have tried several software that can control mouse acceleration on Mac OSX, but still not satisfied. Even there are lengthy discussion on Apple forum debating this matter.
Gladly, there are wonderful engineers that started to develop the promising solution: http://smoothmouse.com/
If anyone feel uncomfortable with the acceleration of mouse on Mac OSX, I would suggest to try this software. It surpasses any other softwares (includes the paid one) that I have tried to make my mouse movement on Mac OSX as similar as on Windows. I hope that Apple could notice this little yet important matter, especially for new users who were heavy users of Windows, and provide built-in solution on the next release of OSX. I could understand that not all users notice the difference. But It is somewhat a shame on Apple for not noticing this little matters for years.
That's all :)
Labels:
macOSX
Friday, March 15, 2013
WinShell cannot start AcrobatReader XI
When I tried to launch Acrobat Reader from WinShell, I got the following error message:
Cannot start AcrobatReader or open the document.Seems that the solution is quite straightforward:
1. Please check on the exe file and cmd line of the PDFView options.
2. Please set correct Adobe DDE Version in registry key 'HKEY_CLASSES_ROOT\acrobat\shell\open\ddeexec\application'
- Make sure the Acrobat Reader is already running before calling it from WinShell (just run the Acrobat Reader from the start menu once, and keep it running).
- Edit the registry entry as mentioned in the error message. For example, in my case, I found that the value of my Acrobat Reader was set to AcroViewR10. Since I am using version 11, I have to change the value to AcroViewR11.
Wednesday, February 27, 2013
Change screen resolution of Ubuntu 12.10 on Parallels 7
When I installed Ubuntu 12.10 using Parallel 7 and installed the Parallels Tools, it seems that the screen resolution is fixed to 800 x 600 pixels only. Gladly that there is a workaround for this problem. It is by using the Parallels Tools from Parallels 8. Credit to the post here: http://forum.parallels.com/showpost.php?p=657046&postcount=53
The steps are as follows:
- Download the trial version of Parallels 8.
- Mount the dmg file of Parallels 8.
- Open terminal, go to the mounted dmg, for example in my system I did like this:
$ cd /Volumes/Parallels\ Desktop\ 8/
- Copy the iso file of the Parallel Tools to my home directory (or any directory), example:
$ cp ./Parallels\ Desktop.app/Contents/Resources/Tools/prl-tools-lin.iso ~/
- Mount the iso from the Ubuntu 12.10, and upgrade the Parallels Tools from Ubuntu 12.10 terminal, example:
$ cd /media/{your-Ubuntu-user}/Parallels\ Tools $ sudo ./install
Labels:
macOSX,
ubuntu,
virtualization
Saturday, September 29, 2012
Modifying PATH environment variable Windows 7 doesn't work?
For almost a week, I had trouble adding a directory to PATH environment variable in Windows 7 64bit. I was trying to add a path of "C:\Program Files (x86)\gs\gs9.05\bin" to the PATH environment variable, but it just didn't work. I even restarted the PC although it should be unnecessary, opened the command prompt and checked the content of the PATH, but I couldn't find anything wrong. Until finally... found the culprit.. It is the whitespace.
If you add a path, just make sure not to put any whitespace between the semicolon. As an example, the following second path may not work because there is a whitespace between the semicolon ';' and the letter 'C' :
That's all :)
If you add a path, just make sure not to put any whitespace between the semicolon. As an example, the following second path may not work because there is a whitespace between the semicolon ';' and the letter 'C' :
C:\Program files\program 1\bin; C:\Program files\program 2\bin;To make it work, remove the whitespace between semicolon ';' and the letter 'C':
C:\Program files\program 1\bin;C:\Program files\program 2\bin;
That's all :)
Labels:
vista
Thursday, July 26, 2012
OSX Mountain Lion workaround to enable web sharing
I have just upgraded to Mountain Lion. But I feel very disappointed that the web sharing feature is missing. I cannot access my local site, but somehow I still can get the default apache page when accessing http://localhost/.
Here is the workaround that I did to re-enable my own site. To make it safe, make sure to make a copy of /etc/apache2/httpd.conf before modifying anything.
(1) Open terminal, switch to root:
That's all :)
Here is the workaround that I did to re-enable my own site. To make it safe, make sure to make a copy of /etc/apache2/httpd.conf before modifying anything.
(1) Open terminal, switch to root:
$ sudo su -(2) Go to /etc/apache2/users/:
$ cd /etc/apache2/users $ ls(3) I found one file Guest.conf. I copy the file into another file (in this case I am using my own user name: chn.conf), and edit the directory location to my Site location in "/Users/chn/Sites":
$ cp Guest.conf chn.conf $ vi chn.confIt looks like this after the modification:
<Directory "/Users/chn/Sites/">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
(4) Let apache load PHP module, by editing the httpd.conf:
$ vi /etc/apache2/httpd.confSearch for the following line:
#LoadModule php5_module libexec/apache2/libphp5.soand remove the remark "#" in the beginning of the line so it looks like this:
LoadModule php5_module libexec/apache2/libphp5.so(5) Restart the apache service by the following command:
$ apachectl restartNow I can access my own homepage again.
That's all :)
Labels:
macOSX
Monday, July 16, 2012
How to do screen capture in MacOSX in JPG instead of PNG
In MacOSX, we can easily do screen capture and save the image in PNG format to the desktop by the following keyboard shortcuts:
That's all :)
- Comand+Shift+3 : capture the whole screen.
- Comand+Shift+4 : capture a particular area by specifying the area using mouse, or by pressing spacebar to select a window.
$ default write com.apple.screencapture type jpg $ killall SystemUIServer
That's all :)
Labels:
macOSX
Sunday, May 08, 2011
Workaround for Lifehacker or gizmodo automatically redirect the browser from .com to .jp
I sometimes experienced that lifehacker.com or gizmodo.com do redirection automatically to lifehacker.jp or gizmodo.jp. Possibly that the website is either checking the ip address of the user or the browser's local language setting. This auto redirection is quite annoying when accessing the page from google search result, because instead of showing the correct page, it shows the front page of the Japanese version. To solve this annoying redirection, add subdomain "us." in front of the url of lifehacker.com or gizmodo.com page.
For example, if the original URL is:
http://lifehacker.com/5799574/top-10-fixes-for-the-webs-most-annoying-problems
it will become:
http://us.lifehacker.com/5799574/top-10-fixes-for-the-webs-most-annoying-problems
Once the us.lifehacker.com is loaded, it will stay in the English version although we omit the subdomain "us." until we delete the cookies.
That's all :)
Update 2013/4/30:
There are few changes at lifehacker and gizmodo, so that this tips is no longer working. You can check the new changes here:
http://lifehacker.com/welcome-to-the-new-lifehacker-472650381
http://gizmodo.com/welcome-to-the-new-gizmodo-481330297
That's all :)
For example, if the original URL is:
http://lifehacker.com/5799574/top-10-fixes-for-the-webs-most-annoying-problems
it will become:
http://us.lifehacker.com/5799574/top-10-fixes-for-the-webs-most-annoying-problems
Once the us.lifehacker.com is loaded, it will stay in the English version although we omit the subdomain "us." until we delete the cookies.
That's all :)
Update 2013/4/30:
There are few changes at lifehacker and gizmodo, so that this tips is no longer working. You can check the new changes here:
http://lifehacker.com/welcome-to-the-new-lifehacker-472650381
http://gizmodo.com/welcome-to-the-new-gizmodo-481330297
That's all :)
Labels:
localization
Monday, February 28, 2011
How to hibernate instead of standby when closing the lid of macbook(pro|air)
Sometimes, we probably prefer to hibernate my mbp instead of make it standby when closing the lid. I am wondering why there is no GUI setting for this simple matter. The only way that I know is by using command pmset from the terminal window as follow:
(1) To enable the hibernate:
(2) To switch back (standby):
Or for more detail of pmset command, read the manual (man pmset).
That's all :)
(1) To enable the hibernate:
$ sudo pmset -a hibernatemode 5
(2) To switch back (standby):
$ sudo pmset -a hibernatemode 0
Or for more detail of pmset command, read the manual (man pmset).
That's all :)
Labels:
macOSX
Saturday, February 26, 2011
How to show full path in Mac OSX Finder window title bar
To show the complete path in the Finder title bar of Mac OSX (maybe only for OSX 10.5 and newer), type the following two commands in terminal:
And to reverse:
That's all :)
$ defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
$ killall Finder
And to reverse:
$ defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO
$ killall Finder
That's all :)
Labels:
macOSX
Friday, January 14, 2011
How to add shortcut to sidebar OSX
To add shortcut to the finder's sidebar on OSX:
That's all :)
- drag and drop the folder or,
- select the folder, press: Command+T
That's all :)
Labels:
macOSX
Friday, December 24, 2010
Windows could not start because the following file is missing or corrupt \windows\SYSTEM32\CONFIG\SYSTEM
Three days ago, a friend asked me to recover his laptop (winXP) from the following error which always appeared during booting:
The solution is straightforward from Microsoft website (http://support.microsoft.com/kb/307545). In brief:
The first step is to gain access to windows OS by replacing the broken registry file with the default registry file (windows installation CD is required). The second step is to copy the latest system restore registry file (hopefully your system restore is enabled) to replace the default registry file.
To be more detail, those steps are done as follow:
That's all :)
Windows could not start because the following file is missing or corrupt \windows\SYSTEM32\CONFIG\SYSTEM
The solution is straightforward from Microsoft website (http://support.microsoft.com/kb/307545). In brief:
The first step is to gain access to windows OS by replacing the broken registry file with the default registry file (windows installation CD is required). The second step is to copy the latest system restore registry file (hopefully your system restore is enabled) to replace the default registry file.
To be more detail, those steps are done as follow:
- boot using the WinXP installation CD, select repair
- after entering the command prompt, manually copy (overwrite) the registry file (SYSTEM, SOFTWARE, SAM, SECURITY, DEFAULT) from C:\WINDOWS\REPAIR\ to C:\WINDOWS\SYSTEM32\CONFIG\ (you might want to backup the original files)
- restart to save mode.
- gain access to System Volume Information folder (http://support.microsoft.com/kb/309531/), inside the folder, find sub folder with name _restore {GUID}\RPx\snapshot. For example: C:\System Volume Information\_restore{D86480E3-73EF-47BC-A0EB-A81BE6EE3ED8}\RP1\Snapshot
- copy the following files from the Snapshot folder to any other folders: _REGISTRY_USER_.DEFAULT, _REGISTRY_MACHINE_SECURITY, _REGISTRY_MACHINE_SOFTWARE, _REGISTRY_MACHINE_SYSTEM, _REGISTRY_MACHINE_SAM. Rename each of the files to DEFAULT, SECURITY, SOFTWARE, SYSTEM, SAM, respectively.
- boot using WinXP installation CD, select repair
- after entering the command prompt, manually copy (overwrite) the file from step (5) to C:\WINDOWS\SYSTEM32\CONFIG\
- restart.
- finish, or according to the microsoft website, you should try to restore the setting to previous restore point (Start, All Programs, Accessories, System Tools, System Restore, Restore to a previous restore point).
That's all :)
Labels:
xp
Tuesday, June 29, 2010
Colored ls in MacOSX terminal
To have a colored ls in MacOSX terminal:
That's all :)
- edit or create ~/.profile
- add line:
export CLICOLOR=1
That's all :)
Labels:
macOSX
Friday, February 12, 2010
Emulating HASP HL Basic
About a month ago, I was asked to remove the protection of a software (it looks like the software is specially developed --not for public sale) which is using usb key to protect the unauthorized execution.
First of all, I would like to give credit to the reverse engineering team board, even though I never post any message there, but their board contains invaluable information to help me complete this task. Please notice that I share this information only for educational purpose and only as a note for myself. If you have trouble, please don't ask me. Go to the board instead. :)
Gladly, the usb key type is HASP HL Basic, which is simpler to emulate. Here is the step I've done to successfully emulate the usb key:
All of the tools are available freely in the internet, however, it takes time to find.
That's all :)
First of all, I would like to give credit to the reverse engineering team board, even though I never post any message there, but their board contains invaluable information to help me complete this task. Please notice that I share this information only for educational purpose and only as a note for myself. If you have trouble, please don't ask me. Go to the board instead. :)
Gladly, the usb key type is HASP HL Basic, which is simpler to emulate. Here is the step I've done to successfully emulate the usb key:
- Get the password-1 and password-2 of the usb key
Tool required: hasploger
Plug the usb key and run hasploger. Then, execute the protected software. Hasploger will be able to get the password-1 and password-2 of the usb key. - Dump the usb key (password-1 and password-2 from step (1) are required)
Tool required: h5dmp
The size of the dump file is 719 bytes (hasp.dmp) - Create dummy memory file
Tool required: any, notepad text editor is also possible
Since hasp HL Basic does not contain memory, create file with any content with size 112 bytes (hhl_mem.dmp) - Convert the dump file from step (2) and (3) to registry file to be used by emulator
Tool required: UniDumpToReg - Install emulation
Tool required: I am using multikey_19.0.2-x86 to emulate the key in vista (32bit). While in XP I am using vbus_0.15.4.
By using the example of registry file from multikey/vbus, modify the registry file from step (4). Then, install the registry and the emulation tool. - Done.
All of the tools are available freely in the internet, however, it takes time to find.
That's all :)
Update #1 (2010/11/03)
I've just realized that I miss-typed when I checked my files,the correct multikey file that I was using is multikey_18.0.2-x86. Probably there's a new update now since it had been months.
That's all :)
Friday, October 30, 2009
How to set NetBeans locale to English
My Windows OS has Japanese language as its default locale. However, I am still having troubles understanding Japanese anyway lol. When I try to install JDK+NetBeans, by defaults it will start with the default locale of my system --that is Japanese. After googling here and there, finally found the way to run the NetBeans in English:
Execute the NetBeans with startup parameter --locale:
or
Edit the configuration files (usually in\etc\netbeans.conf), find the entry started with netbeans_default_options="..." and insert the locale parameter to it:
Reference:
http://wiki.netbeans.org/FaqMessagesInEnglish
That's all :)
Execute the NetBeans with startup parameter --locale:
netbeans --locale en
or
Edit the configuration files (usually in
netbeans_default_options="--locale en ..."
Reference:
http://wiki.netbeans.org/FaqMessagesInEnglish
That's all :)
Labels:
java
Saturday, July 25, 2009
How to merge file dll to exe C#
Today, at work I have to create a demo application using C# to automatically launch IE and open certain URL and modify its form input. Since this task requires SHDocVW and MSHTML components, I have to let dll files accompany the exe file. But there is a requirement that the application shall consist of one single executable. Hence, I have to find a way to merge the dll to executable. Gladly, after searching in the internet, I found that it is very simple.
The step is as follows:
To have a better understanding on how to execute ilmerge, I suggest to read the ilmerge.doc which is located in the installation folder.
That's all :)
The step is as follows:
- Download ILMerge from microsoft site here.
- Install and copy the ilmerge.exe to windows directory or simply make the PATH to installation directory (to let us execute ilmerge.exe from anywhere)
- Go to the project properties, Build Events. Assuming the dll files are in the same directory of the Target, enter the following code to the post built even command line:
ilmerge /wildcards /out:$(TargetDir)my-final-app.exe $(TargetPath) $(TargetDir)*.dll
To have a better understanding on how to execute ilmerge, I suggest to read the ilmerge.doc which is located in the installation folder.
That's all :)
Labels:
dotnet
Thursday, April 16, 2009
how to change gimp language setting
After changing some regional and language settings in my vista to Japanese, if I run gimp, it displays unreadable character instead of English. I found this url is very helpful to change the language of gimp (in XP, Linux, and MacOSX):
http://docs.gimp.org/en/gimp-fire-up.html#gimp-concepts-running-language
For vista, it is very similar with XP, example is to use English (en):
That's all :)
http://docs.gimp.org/en/gimp-fire-up.html#gimp-concepts-running-language
For vista, it is very similar with XP, example is to use English (en):
- go to control panel, system, advanced system settings
- click Environment variables..
- add new environment variable (click New...):
variable name: LANG
variable value: en - Ok. Finish.
That's all :)
Labels:
gimp,
localization,
vista,
xp
Thursday, April 02, 2009
Cannot display Hidden Folders and Files
If you have just infected by some worm or mallware, probably your windows cannot display hidden folders and files although you already set the hidden files options from explorer.
Copy paste the following text to notepad, and save it (for example: repair.reg), then double click to make changes to windows registry.
That's all :)
Copy paste the following text to notepad, and save it (for example: repair.reg), then double click to make changes to windows registry.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden]
"Text"="@shell32.dll,-30499"
"Type"="group"
"Bitmap"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\
00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,53,00,\
48,00,45,00,4c,00,4c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,2c,00,34,00,00,\
00
"HelpID"="shell.hlp#51131"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN]
"RegPath"="Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced"
"Text"="@shell32.dll,-30501"
"Type"="radio"
"CheckedValue"=dword:00000002
"ValueName"="Hidden"
"DefaultValue"=dword:00000002
"HKeyRoot"=dword:80000001
"HelpID"="shell.hlp#51104"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL]
"RegPath"="Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced"
"Text"="@shell32.dll,-30500"
"Type"="radio"
"ValueName"="Hidden"
"DefaultValue"=dword:00000002
"HKeyRoot"=dword:80000001
"HelpID"="shell.hlp#51105"
"CheckedValue"=dword:00000001
That's all :)
Tuesday, March 31, 2009
How to change ubuntu resolution in Virtual Box
Today, I'm installing Ubuntu 8.04 in Virtual Box, with Vista as the host OS. I'm planning to use it as Qtopia development environment. After the installation is completed, I found that the maximum resolution I could set was only 800x600. After some googling, found the solution as follows:
- install linux guest additions in virtual box
- Select from menu: Devices, Install Guest Additions... Ubuntu will detect a new CD inserted and mount it automatically.
- go to the terminal, run the VBoxLinuxAdditions.run as root
$ sudo /media/cdrom/VBoxLinuxAdditions-x86.run
- edit /etc/X11/xorg.conf using any text editor you're familiar with.
- Find section "Device" as follows:
Section "Device"
Insert additional setting so that the section "Device" will look as follows:
Identifier "Configured Video Device"
...
EndSectionSection "Device"
Identifier "Configured Video Device"
...
Driver "vboxvideo"
EndSection - Find section "Screen" as follows:
Section "Screen"
Modify value of Device and Monitor, and insert some additional setting before EndSection so that the section will look similar with the following (I set resolution 1024x768 here):
Identifier "Default Screen"
Device "VirtualBox graphics card"
Monitor "Generic Monitor"
...
EndSectionSection "Screen"
Identifier "Default Screen"
Device "VirtualBox graphics card"
Monitor "Generic Monitor"
DefaultDepth 24
....
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection - Finish, reboot.
Labels:
ubuntu
Friday, March 20, 2009
pppd segmentation fault
At work, I have to develop an embedded system sh3 with busybox and 2.6.12.6 kernel inside it. It is connected to gsm modem through ttySC1. After shutting down several times and rebooting, the pppd occasionally got segmentation fault. The suggestion from debian bug report solves my problem. It is pretty straightforward: Simply delete /var/run/pppd.tdb file (in my system, it is /var/run/pppd2.tdb).
That's all :)
That's all :)
Subscribe to:
Comments (Atom)