Archive for May, 2008

Friday, May 16th, 2008

Recently we’ve been converting an ISP’s servers from Debian Linux to Ubuntu Server. Ubuntu is heavily based on Debian so most things are the same. The most limiting factor so far has been that Ubuntu’s Main software package repository contains far fewer packages than Debian.
One Apache module we like to use on production servers is […]

Wednesday, May 14th, 2008

#apt-get install curl libcurl3 libcurl3-dev php5-curl
ref : http://codehunter.net/category/ubuntu/

Sunday, May 4th, 2008

#cd /usr/ports/database/mysql51-server
#make WITH_CHARSET=tis620 WITH_XCHARSET=all WITH_COLLATION=tis620_thai_ci WITH_OPENSSL=yes BUILD_OPTIMIZED=yes WITH_ARCHIVE=yes WITH_FEDERATED=yes WITH_NDB=yes WITH_LINUXTHREADS=yes install clean
comment :
WITH_CHARSET=charset    Define the primary built-in charset (latin1).
WITH_XCHARSET=list      Define other built-in charsets (may be ‘all’).
WITH_COLLATION=collate  Define default collation (latin1_swedish_ci).
WITH_OPENSSL=yes        Enable secure connections.
WITH_LINUXTHREADS=yes   Use the linuxthreads pthread library.
WITH_PROC_SCOPE_PTH=yes Use process scope threads
                                (try it if you use libpthread).
BUILD_OPTIMIZED=yes     Enable compiler optimizations
                                (use it if […]