<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Toey blog</title>
	<link>http://toey.tc20.net</link>
	<description>บันทึกเรื่องราวต่างๆ</description>
	<lastBuildDate>Sat, 28 Aug 2010 22:20:11 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.1" -->

	<item>
		<title>edit open files limit on solaris</title>
		<description><![CDATA[add # Hard limit set rlim_fd_max = 65535 # Soft limit set rlim_fd_cur = 65535 in /etc/system]]></description>
		<link>http://toey.tc20.net/2010/08/29/edit-open-files-limit-on-solaris/</link>
			</item>
	<item>
		<title>/export/home to /home on solaris</title>
		<description><![CDATA[/export/home to /home on solaris add * -fstype=lofs :/export/home/&#038; in /etc/auto_home]]></description>
		<link>http://toey.tc20.net/2010/08/28/exporthome-to-home-on-solaris/</link>
			</item>
	<item>
		<title>Colocation True idc รัชดา ชั้น 14 2400 บาท</title>
		<description><![CDATA[Colocation True idc รัชดา ชั้น 14 Port 100 Mb/s Inter Share 3Mb/s ราคาพิเศษ 2400/u/เดือน (จากราคาปกติ 3000/u/เดือน) ฟรี setup + config เบื้องต้น ฟรี Directadmin มูลค่า 3000 บาท ตลอดอายุการใช้งาน ไม่รับ camforg proxy vpn และ เวปผิด กฏหมายทุกชนิด โทร 08-91994295 Email : toey[at]tc20.net]]></description>
		<link>http://toey.tc20.net/2010/08/09/colocation-true-idc-%e0%b8%a3%e0%b8%b1%e0%b8%8a%e0%b8%94%e0%b8%b2-%e0%b8%8a%e0%b8%b1%e0%b9%89%e0%b8%99-14-2400-%e0%b8%9a%e0%b8%b2%e0%b8%97/</link>
			</item>
	<item>
		<title>install openldap (compile) on centos x86_64</title>
		<description><![CDATA[# wget http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz # tar -xvzf db-4.8.30.tar.gz # cd db-4.8.30/build_unix/ # ../dist/configure &#8211;prefix=/usr/local # make # make install # wget ftp://ftp.OpenLDAP.org/pub/OpenLDAP/openldap-stable/openldap-stable-20100719.tgz # tar -xvzf openldap-stable-20100719.tgz # cd openldap-* # ./configure # make depend # make # make install]]></description>
		<link>http://toey.tc20.net/2010/08/09/install-openldap-compile-on-centos-x86_64/</link>
			</item>
	<item>
		<title>soelim: command not found on centos x86_64</title>
		<description><![CDATA[yum install groff.x86_64]]></description>
		<link>http://toey.tc20.net/2010/08/09/soelim-command-not-found-on-centos-x86_64/</link>
			</item>
	<item>
		<title>install python 2.7 , gevent on centos 5 x86_64</title>
		<description><![CDATA[#yum install gcc gcc-c++.x86_64 compat-gcc-34-c++.x86_64 openssl-devel.x86_64 zlib*.x86_64 install python 2.7 #wget http://www.python.org/ftp/python/2.7/Python-2.7.tar.bz2 #tar -xvjf Python-2.7.tar.bz2 #cd Python* #./configure --prefix=/opt/python27 #make #make install #vi ~/.bash_profile replace PATH=$PATH:$HOME/bin with PATH=$PATH:$HOME/bin:/opt/python27/bin reload .bash_profile #source ~/.bash_profile #echo "/opt/python27/lib" > /etc/ld.so.conf.d/python27.conf #ldconfig install setuptool #cd ~ #wget http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg #sh setuptools-0.6c11-py2.7.egg install gevent #yum install libevent.x86_64 libevent-devel.x86_64 #easy_install-2.7 greenlet #wget http://pypi.python.org/packages/source/g/gevent/gevent-0.13.0.tar.gz [...]]]></description>
		<link>http://toey.tc20.net/2010/08/04/install-python-2-7-gevent-on-centos-5-x86_64/</link>
			</item>
	<item>
		<title>how to mount hdfs</title>
		<description><![CDATA[# ant compile-c++-libhdfs -Dislibhdfs=1 # mkdir build/libhdfs # cp -r build/c++/Linux-amd64-64/lib/* build/libhdfs/ # ant compile-contrib -Dislibhdfs=1 -Dfusedfs=1 -Dlibhdfs-fuse=1 #ln -s /usr/local/hadoop/build/contrib/fuse-dfs/fuse_dfs* /bin/ #ln -s /usr/local/hadoop/build/libhdfs/* /lib/ #mkdir /mnt/hdfs test mount #fuse_dfs_wrapper.sh dfs://hdmaster01:59995 /mnt/hdfs -d &#038; #ls /mnt/hdfs]]></description>
		<link>http://toey.tc20.net/2010/07/31/how-to-mount-hdfs/</link>
			</item>
	<item>
		<title>how to change apache product name on header</title>
		<description><![CDATA[how to change apache product name on header vi /apache_1.3.X/src/include/httpd.h หา #define SERVER_BASEVENDOR &#8220;Apache Group&#8221; #define SERVER_BASEPRODUCT &#8220;Apache&#8221; #define SERVER_BASEREVISION &#8220;1.3.X&#8221; #define SERVER_BASEVERSION SERVER_BASEPRODUCT &#8220;/&#8221; SERVER_BASEREVISION #define SERVER_PRODUCT SERVER_BASEPRODUCT #define SERVER_REVISION SERVER_BASEREVISION #define SERVER_VERSION SERVER_PRODUCT &#8220;/&#8221; SERVER_REVISION enum server_token_type { SrvTk_MIN, /* eg: Apache/1.3.0 */ SrvTk_OS, /* eg: Apache/1.3.0 (UNIX) */ SrvTk_FULL, /* eg: Apache/1.3.0 [...]]]></description>
		<link>http://toey.tc20.net/2010/07/31/how-to-change-apache-product-name-on-header/</link>
			</item>
	<item>
		<title>mount iso on solaris</title>
		<description><![CDATA[two command #lofiadm -a /root/my.iso /dev/iso01 #mount -F hsfs -o ro /dev/iso01 /mnt one command #mount -F hsfs -o ro `lofiadm -a /root/my.iso` /mnt]]></description>
		<link>http://toey.tc20.net/2010/07/30/mount-iso-on-solaris/</link>
			</item>
	<item>
		<title>zfs basic command</title>
		<description><![CDATA[# zpool create mypool /dev/dsk/c0t0d0 # zfs list # zfs mount mypool # zfs unmount mypool # zfs create mypool/test # zfs destroy mypool/test # zfs rename mypool/test mypool/test2 # zfs set canmount=off mypool # zfs set mountpoint=/home mypool # zfs set compression=on mypool # zfs set atime=off mypool # zfs set quota=1G mypool/test]]></description>
		<link>http://toey.tc20.net/2010/07/30/zfs-basic-command/</link>
			</item>
</channel>
</rss>
