<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>C.K. Blog &#187; Linux</title>
	<atom:link href="http://cckk.tw/wordpress/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://cckk.tw/wordpress</link>
	<description>全新上市，保固數年!!</description>
	<lastBuildDate>Fri, 30 Mar 2012 06:06:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Linux 安裝 nginx + php + php-fpm</title>
		<link>http://cckk.tw/wordpress/211/</link>
		<comments>http://cckk.tw/wordpress/211/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 01:20:25 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[人工自動]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php-fpm]]></category>

		<guid isPermaLink="false">http://cckk.tw/wordpress/?p=211</guid>
		<description><![CDATA[分享到Facebook 因PHP 5.2.X並無php-fpm所以要另外做path 1.做PHP patch和重新編譯 先從PHP官網下載最新版的PHP5.2.x原始碼檔案， 還有對應5.2.x版本的PHP-FPM diff檔並做Patch， 這裡以php-5.2.17做範例 wget http://tw2.php.net/distributions/php-5.2.17.tar.gz wget http://php-fpm.org/downloads/php-5.2.17-fpm-0.5.14.diff.gz tar -zxvf php-5.2.17.tar.gz gzip -cd php-5.2.17-fpm-0.5.14.diff.gz &#124; patch -d php-5.2.17 -p1 2.編譯前檢測及設定 這是我編譯時的設定，參考看看，還有我指定了php及php-fpm設定檔的位置，後面會用到，跟我不一樣的要注意一下喔~ ./configure --with-config-file-path=/usr/local/php5 --sysconfdir=/usr/local/php5 --enable-fastcgi --enable-fpm --with-fpm-conf=/etc/php-fpm/php-fpm.conf --with-fpm-log=/var/log/php-fpm/php-fpm.log --with-fpm-pid=/var/run/php-fpm/php-fpm.pid --with-mcrypt --with-zlib --enable-mbstring --with-openssl --with-gd --with-mysql=/usr/bin --with-mysql-sock=/var/run/mysqld/mysqld.sock --with-mysqli=/usr/bin/mysql_config --with-pdo-mysql=mysqlnd --with-mcrypt --with-zlib --enable-pdo=/usr/bin --with-pdo-mysql=/usr/bin/mysql_config &#160; make;make install 3. 後續設定 官方有提供製作init.d script的方法，來做一下吧~ ln [...]]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/211/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux服務一覽表</title>
		<link>http://cckk.tw/wordpress/164/</link>
		<comments>http://cckk.tw/wordpress/164/#comments</comments>
		<pubDate>Mon, 18 May 2009 02:52:26 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://cckk.tw/wordpress/?p=164</guid>
		<description><![CDATA[分享到Facebook 預設開啟的服務 建議 說明 acpid 停用 Advanced Configuration and Power Interface 電源進階設定，常用在 Laptop 上 apmd 停用 Adventage Power Management daemon 偵測系統的電池電量，常用在 Laptop 上 atd 停用 /etc/at.allow，/etc/at.deny 我大概都使用 crond 來達成 autofs 停用 自動掛載檔案系統與週邊裝置 (如光碟、USB)，常用在 Laptop 上 avahi-daemon 停用 當區網沒有 DNS 服務時會試著尋找提供 zeroconf 協定的主機 bluetooth 停用 Bluetooth 藍芽，常用在 Laptop 上 cpuspeed 停用 控制 CPU 速度主要用來省電，常用在 Laptop 上 [...]]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/164/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clam AntiVirus</title>
		<link>http://cckk.tw/wordpress/40/</link>
		<comments>http://cckk.tw/wordpress/40/#comments</comments>
		<pubDate>Fri, 09 Sep 2005 12:19:55 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[AntiVirus]]></category>

		<guid isPermaLink="false">http://cckk.tw/wordpress/archives/2005/11/09/40/</guid>
		<description><![CDATA[分享到Facebook clamav tarball 安裝方式 首先到Clam AntiVirus首頁下載 http://www.clamav.net/ 在本機系統增加clamav使用者及群組 groupadd clamav useradd -g clamav -s /bin/false -c "Clam AntiVirus" clamav 開始編譯 tar -zxvf clamav-*.**.*.tar.gz cd clamav-*.**.* ./configure &#8211;sysconfdir=/usr/local/etc 如果出現zlib版本問題請更新您的zlib版本不然就是跳過檢查 ./configure &#8211;sysconfdir=/usr/local/etc &#8211;disable-zlib-vcheck make su -c "make install" vi /usr/local/etc/clamd.conf (在 Example 前面加 #) vi /usr/local/etc/freshclam.conf (在 Example 前面加 #) vi /etc/clamd.conf a) 在 Example 前面加 # [...]]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/40/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在 Linux 下配置 PHP 支援 GD</title>
		<link>http://cckk.tw/wordpress/27/</link>
		<comments>http://cckk.tw/wordpress/27/#comments</comments>
		<pubDate>Thu, 16 Jun 2005 12:19:46 +0000</pubDate>
		<dc:creator>C.K.</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cckk.idv.tw/wordpress/archives/2005/06/16/27/</guid>
		<description><![CDATA[分享到Facebook 本文就是介紹在 Linux 下安裝 GD，並配置 PHP 支援 GD GD 安裝 第一部需要做的是先要安裝 GD 到系統內，而安裝 GD 前需要安裝 jpeg-6b, libpng, zlib, freetype。以下是下載網址： GD 2.0.33 jpeg-6b libpng 1.2.8 zlib 1.2.3 freetype-2.1.10.tar.gz 建立安裝套件目錄 mkdir /usr/local/modules 下載完成後鍵入以下指令進行安裝。 安裝 zlib #不要用&#8211;prefix指訂安裝目錄會影響GD tar zxvf zlib-1.2.3.tar.gz cd zlib-1.2.3 ./configure make make install 安裝 freetype tar zxvf freetype-2.1.10.tar.gz cd freetype-2.1.10 ./configure &#8211;prefix=/usr/local/modules/freetype make make install [...]]]></description>
		<wfw:commentRss>http://cckk.tw/wordpress/27/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

