Skip to main content

Posts

Showing posts with the label centos

:: How to install DirectAdmin on Linux CentOS

:: What is DirectAdmin DirectAdmin is a graphical web-based web hosting control panel designed to make administration of websites easier. – wikipedia :: DA License Make sure you have DA License before installing DirectAdmin :: How to install DirectAdmin on Linux CentOS + installing dependency for DA # yum install gcc gcc-c++ flex bison make bind bind-libs bind-utils openssl openssl-devel perl quota libaio libcom_err-devel libcurl-dev + installing DA # wget http://www.directadmin.com/setup.sh # chmod 755 setup.sh # ./setup.sh :: Testing Open DA using your web browser on : http://youripaddress:2222 :: Link + Google + DirectAdmin

:: how to update linux centos 5.5 to 5.6

:: how to update linux centos 5.5 to 5.6 # yum update :: checking centos version # cat /etc/issue CentOS release 5.6 (Final) Kernel \r on an \m or # lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 5.6 (Final) Release: 5.6 Codename: Final :: links + google

:: how to install pcre on centos

:: downloading pcre # wget http://sourceforge.net/projects/pcre/files/pcre/7.6/pcre-7.6.tar.gz :: extract and build pcre on linux centos # tar -xzf pcre-7.6.tar.gz # cd pcre-7.6 # ./configure --enable-utf8 --enable-unicode-properties # make && make install :: checking pcre version # pcretest -C PCRE version 7.6 2008-01-28 Compiled with UTF-8 support Unicode properties support Newline sequence is LF \R matches all Unicode newlines Internal link size = 2 POSIX malloc threshold = 10 Default match limit = 10000000 Default recursion depth limit = 10000000 Match recursion uses stack :: links + google + chrisjean