Thursday, November 10, 2011

ZendOptimizer installation on Linux

  1. Check PHP version of the Linux server.
  2. Download ZendOptimizer: http://www.zend.com/en/products/guard/downloads
  3. Follow the instruction of '1&1':
    http://faq.1and1.com/scripting_languages_supported/php/15.html
  4. After unzipping, you might write a 'php.info' file on the folder where ZendOptimizer was installed.

    * If you want to see whether the ZendOptimizer was installed successfully, check with 'php.info' and 'test_enc.php'.
* About setting PHP global variables with php.ini:
http://faq.1and1.com/scripting_languages_supported/php/9.html

Monday, September 12, 2011

Install Boost on Ubuntu / 우분투에서 Boost 설치

* References:

* Installation Instructions:
  1. Download Boost Version 1.47.0 (http://www.boost.org/)
  2. untar the file into '/usr/local/src'
  3. Move into the Boost folder
  4. Run "$ sudo ./bootstrap.sh"
  5. Run "$ sudo ./bjam install"
* Test: (To be updated..)

Sunday, September 11, 2011

Wednesday, September 7, 2011

Path of VMware Shared Folders on Ubuntu / VMware 공유폴더 우분투 경로

Host OS: Windows 7
Guest OS: Ubuntu

1. Set 'Shared Folders' at the "Virtual Machine Settings" menu on VMware Player.
2. Go to the path of "/mnt/hgfs/" to see the shared folders and files in the Ubuntu file system.

Monday, July 11, 2011

Java (JDK) Installation on Ubuntu / 우분투에서 Java (JDK) 설치

* References:

* Installation Instructions:
  1. Download a setup file
  2. Make sure that execute permissions are set
  3. Change directory to the location where you would like the files to be installed.
  4. Run the self-extracting binary. and Delete the bin file

Set JAVA_HOME Environment Variable (...)
  • System-wide environment variables: /etc/environment 

Friday, June 3, 2011

Setting up MikTeX on Notepad++ / MikTeX와 Notepad++ 연동

1. Install Notepad++ (http://notepad-plus-plus.org/)
2. Install MikTeX 2.9 (http://miktex.org/)
3. Run Notepad++ and open [Run] -> [Run... (F5)]
4. Input followings and save as each name:

* LaTex 
Ctrl + Shift + F5
"[MikTeX HOME]\miktex\bin\latex.exe" -src-specials "$(FULL_CURRENT_PATH)" -output-directory "$(CURRENT_DIRECTORY)"  

* BibTex
Ctrl + Shift + F6
"[MikTeX HOME]\miktex\bin\bibTex.exe" "$(CURRENT_DIRECTORY)\$(NAME_PART)"

* Yap
Ctrl + Shift + F7 
"[MikTeX HOME]\miktex\bin\yap.exe" -1 "$(CURRENT_DIRECTORY)\$(NAME_PART)"

* PdfLaTex 
Ctrl + Shift+ F8
"[MikTeX HOME]\miktex\bin\pdflatex.exe" "$(FULL_CURRENT_PATH)" -output-directory "$(CURRENT_DIRECTORY)"

Replace [MikTeX HOME] to the installation path of MikTeX such as "C:\Program Files\MiKTeX 2.9" on Windows 7 (32bit).

The shortcut-key combinations above can be varied.