<?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>너만의 별이 되어 줄게 - star4u.org</title>
	<atom:link href="http://star4u.org/blog/?feed=rss2?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://star4u.org/blog</link>
	<description></description>
	<lastBuildDate>Tue, 10 Aug 2010 22:44:49 +0000</lastBuildDate>
	<language>ko</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>geoip, referer, user agent로 nginx 접근 제어 하기</title>
		<link>http://star4u.org/blog/?p=288</link>
		<comments>http://star4u.org/blog/?p=288#comments</comments>
		<pubDate>Tue, 10 Aug 2010 13:31:15 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[컴퓨터]]></category>
		<category><![CDATA[geoip]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[referer]]></category>
		<category><![CDATA[user agent]]></category>
		<category><![CDATA[리눅스]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=288</guid>
		<description><![CDATA[<p>nginx는 몇가지 방법으로 접근 제어를 할 수 있는데 여기서는 geoip, referer, user agent로 제어하는 방법을 알아본다.</p> geoip <p>nginx에서 geoip를 이용하기 위해서는 nginx 컴파일 시에 &#8211;with-http_geoip_module 옵션을 줘야한다. nginx -V로 컴파일 옵션을 알 수 있다.</p> <p>먼저 geoip.dat 파일의 위치를 nginx에 알려줘야 한다.</p> <p>geoip_country /var/lib/GeoIP/GeoIP.dat;</p> <p>예로 중국 아이피를 차단해 본다.</p> <p>if ($geoip_country_code = CN) { return [...]]]></description>
			<content:encoded><![CDATA[<p>nginx는 몇가지 방법으로 접근 제어를 할 수 있는데 여기서는 geoip, referer, user agent로 제어하는 방법을 알아본다.</p>
<h2>geoip</h2>
<p>nginx에서 geoip를 이용하기 위해서는 nginx 컴파일 시에 &#8211;with-http_geoip_module 옵션을 줘야한다. nginx -V로 컴파일 옵션을 알 수 있다.</p>
<p>먼저 geoip.dat 파일의 위치를 nginx에 알려줘야 한다.</p>
<blockquote><p>geoip_country /var/lib/GeoIP/GeoIP.dat;</p></blockquote>
<p>예로 중국 아이피를 차단해 본다.</p>
<blockquote><p>if ($geoip_country_code = CN) {<br />
return 403;<br />
}</p></blockquote>
<p>return 다음에는 클라이언트에 응답할 <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html">http status code</a> 를 적으면 된다.</p>
<p>다음 예는 한국 아이피를 제외한 아이피 모두를 차단한다.</p>
<blockquote><p>if ($geoip_country_code != KR) {<br />
return 403;<br />
}</p></blockquote>
<h2>referer</h2>
<p>무단 링크 방지를 위해 referer로 차단하는 방법을 보자.</p>
<blockquote><p>location /photos/ {<br />
valid_referers none blocked www.mydomain.com mydomain.com;</p>
<p>if ($invalid_referer) {<br />
return   403;<br />
}<br />
}</p></blockquote>
<p>valid_referers는 허락할 referer의 목록을 나열해주면 된다.<br />
none : 클라이언트가 직접 접속 하는 경우 referer가 존재하지 않는다.<br />
blocked: 방화벽에 의해 표시된 referer 헤더<br />
도메인 목록은 1개 이상 적어줄 수 있으며 와일드카드(*)를 사용할 수 있다.</p>
<p>위에 예는/photos/에 대해  클라이언트가 직접 접속하거나 방화벽에 의해 표시된 referer, www.mydomain.com mydomain.com 에서의 접속을 허락하고 나머지 요청은 403을 리턴한다.</p>
<h2>user agent</h2>
<p>마지막으로 클라이언트의 user agent로 접근을 제어하는 방법을 알아보자. 다음은 daum의 검색엔진 로봇인 daumoa를 차단 하는 예이다. robots.txt를 무시하고 마구 긁어가서 막아버렸다.</p>
<blockquote><p>if ($http_user_agent ~* daumoa) {<br />
return 403<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=288</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mock을 이용해 chroot 환경에서 rpm 빌드하기</title>
		<link>http://star4u.org/blog/?p=279</link>
		<comments>http://star4u.org/blog/?p=279#comments</comments>
		<pubDate>Mon, 09 Aug 2010 14:02:22 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[컴퓨터]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[rpmbuild]]></category>
		<category><![CDATA[리눅스]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=279</guid>
		<description><![CDATA[<p>rpm 빌드를 할 때 의존성 때문에 사용하지 않는 패키지를 설치해야 했거나 의존성 문제로 다른 시스템에 제대로 설치가 안되는 문제를 겪어본 경험이 있다면 mock을 이용해 보기를 권한다.</p> <p>mock은 chroot 환경에 빌드에 필요한 최소한의 패키지를 설치하고 빌드할 수 있게 도와주는 프로그램이다. 여기에서는 CentOS 5 64비트 시스템을 기준으로 설명한다.</p> <p>mock을 설치한다.</p> <p>yum install mock</p> <p>/etc/mock/centos-5-x86_64.cfg 이 설정 [...]]]></description>
			<content:encoded><![CDATA[<p>rpm 빌드를 할 때 의존성 때문에 사용하지 않는 패키지를 설치해야 했거나 의존성 문제로 다른 시스템에 제대로 설치가 안되는 문제를 겪어본 경험이 있다면 mock을 이용해 보기를 권한다.</p>
<p>mock은 chroot 환경에 빌드에 필요한 최소한의 패키지를 설치하고 빌드할 수 있게 도와주는 프로그램이다. 여기에서는 CentOS 5 64비트 시스템을 기준으로 설명한다.</p>
<p>mock을 설치한다.</p>
<blockquote><p>yum install mock</p></blockquote>
<p>/etc/mock/centos-5-x86_64.cfg 이 설정 파일이다. CentOS 5 32비트 패키지를 빌드하려면 centos-5-i386.cfg 파일을 수정하면 된다.  기본값으로 빌드해도 되지만 기본 저장소 이외의 패키지가 필요하면 설정파일 내에 저장소를 추가한다.  또한 %packager나 %dist 같은 rpm macro를 추가해줄 수 있다.</p>
<p>mock으로 빌드하려면 계정이 mock그룹에 속해야 하는데 보안상 새로운 계정을 생성해주는게 좋다. 다음 예는 mockbuild라는 계정을 만든다.</p>
<blockquote><p>adduser -m -G mock mockbuild</p></blockquote>
<p>mock은 리빌드만 할 수 있기 때문에 srpm을 미리 만들어줘야 한다. rpmbuild -bs 명령어로 srpm을 만들 수 있다. 의존성을 무시하기 위해 &#8211;nodeps 를 추가해준다. darchon 이라는 패키지를 빌드하려 하고 darchon.spec 파일이 있다면 다음과 같이 srpm을 만들 수 있다.</p>
<blockquote><p>rpmbuild -bs &#8211;nodeps darchon.spec</p></blockquote>
<p>아까 만들었던 mockbuild로 로그인 해서 mock -help 를 하면 기본적인 도움말을 볼 수 있다. darchon.src.rpm을 리빌드하는 기본적인 명령어는 다음과 같다.</p>
<blockquote><p>mock -r centos-5-x86_64 rebuild darchon.src.rpm</p></blockquote>
<p>이럴경우 명령어를 실행할 때 마다 base 시스템을 구축하게 되는데 매번 yum 저장소에서 패키지를 가져와서 설치하기 때문에 비효율적이다. 그래서 &#8211;autocache를 추가하면 /var/lib/mock/root-cache 에 base 시스템을 하나의 압축 파일로 저장했다가 mock을 실행하면 압축을 풀어서 사용한다.</p>
<blockquote><p>mock &#8211;autocache -r centos-5-x86_64 rebuild darchon.src.rpm</p></blockquote>
<p>기본적으로 별다른 메시지를 보여주지 않는데 &#8211;debug 옵션을 추가하면 빌드되는 과정을 볼 수 있다.</p>
<blockquote><p>mock &#8211;autocache &#8211;debug -r centos-5-x86_64 rebuild darchon.src.rpm</p></blockquote>
<p>CentOS 5 64비트 시스템은 /var/lib/mock/centos-5-x86_64/result 에 rpm이 생성된다. mock에서 -r 옵션 다음에 설정파일과 같은 이름이다.</p>
<p>64비트 시스템에서 32비트 패키지를 빌드하고 싶다면 다음과 같은 방법을 사용하면 된다.</p>
<blockquote><p>setarch i386 mock &#8211;autocache &#8211;debug -r centos-5-i386 rebuild darchon.src.rpm</p></blockquote>
<p>base 시스템을 새로 생성하고자 하면 &#8211;autocache 대신에 &#8211;rebuildcache를 사용한다.</p>
<blockquote><p>mock &#8211;rebuildcache -r centos-5-x86_64 init</p></blockquote>
<p>리빌드 중 문제가 생겨 srpm을 새로 생성했다면 &#8211;no-clean 옵션을 줘서 이전 chroot 환경을 그대로 사용하면 시간을 절약할 수 있다.</p>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=279</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>우분투 9.10 미러링 완료</title>
		<link>http://star4u.org/blog/?p=267</link>
		<comments>http://star4u.org/blog/?p=267#comments</comments>
		<pubDate>Wed, 28 Oct 2009 09:24:20 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[컴퓨터]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[우분투]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=267</guid>
		<description><![CDATA[ <p>우분투 9.10 (Karmic Koala)의 정식 발표를 하루 앞두고 미러링이 시작되었다.</p> <p>공식 미러사이트들을 보면 미러링이 완료된 곳도 있고 진행중인곳도 있다. 비공식 미러 사이트인 http://mirror.star4u.org 는 현재 미러링이 완료된 상태이다. 다만 아직 공식 발표 전이기 때문에 다운로드 페이지는 RC버전이 보인다.</p> Ubuntu 9.10 (Karmic Koala) Desktop CD <p>PC (Intel x86) desktop CD 일반적인 데스크탑 용도로 쓸 [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_268" class="wp-caption alignnone" style="width: 212px;">
<dt class="wp-caption-dt"><a href="http://star4u.org/blog/wp-content/uploads/2009/10/ubuntu_logo.png"><img class="size-full wp-image-268" title="ubuntu_logo" src="http://star4u.org/blog/wp-content/uploads/2009/10/ubuntu_logo.png" alt="ubuntu logo" width="202" height="55" /></a></dt>
</dl>
</div>
<p>우분투 9.10 (Karmic Koala)의 정식 발표를 하루 앞두고 미러링이 시작되었다.</p>
<p>공식 미러사이트들을 보면 미러링이 완료된 곳도 있고 진행중인곳도 있다.<br />
비공식 미러 사이트인 <a href="http://mirror.star4u.org">http://mirror.star4u.org</a> 는 현재 미러링이 완료된 상태이다.<br />
다만 아직 공식 발표 전이기 때문에 다운로드 페이지는 RC버전이 보인다.</p>
<h1><span style="color: #ff6600;">Ubuntu 9.10 (Karmic Koala)</span></h1>
<h2>Desktop CD</h2>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-desktop-i386.iso"><strong>PC (Intel x86) desktop CD</strong></a><br />
일반적인 데스크탑 용도로 쓸 경우 다운 받으면 된다.</p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-desktop-amd64.iso"><strong>64-bit PC (AMD64) desktop CD</strong></a><br />
64비트 데스크탑 버전이다.</p>
<h2>Desktop image</h2>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-desktop-armel+dove.img"><strong>Marvell Dove desktop image</strong></a><br />
Marvell Dove 보드용 이미지이다.</p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-desktop-armel+imx51.img"><strong>Freescale i.MX51 desktop image</strong></a><br />
Freescale i.MX51 보드용 이미지이다.</p>
<h2>Server install CD</h2>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-server-i386.iso"><strong>PC (Intel x86) server install CD</strong></a><br />
32비트 서버용이다.<br />
<strong> </strong></p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-server-amd64.iso"><strong>64-bit PC (AMD64) server install CD</strong></a><br />
64비트 서버용이다.</p>
<h2>Alternate install CD</h2>
<p>메모리가 부족하거나 데스크탑 환경으로 설치가 실패할 경우 다운받도록 한다.</p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-alternate-i386.iso"><strong>PC (Intel x86) alternate install CD</strong></a><br />
32비트 버전이다.<br />
<strong></strong></p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-alternate-amd64.iso"><strong>64-bit PC (AMD64) alternate install CD</strong></a><br />
64비트 버전이다.</p>
<h2>UNR live CD</h2>
<p>넷북을 위한 Ubuntu Netbook Remix의 라이브 시디</p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/.pool/ubuntu-9.10-netbook-remix-i386.iso"><strong>PC (Intel x86) UNR live CD</strong></a></p>
<h1><span style="color: #ff6600;">Kubuntu 9.10 (Karmic Koala)</span></h1>
<p>KDE를 기본으로 하는 쿠분투이다.</p>
<h2>Desktop CD</h2>
<p><a href="http://mirror.star4u.org/ubuntu-releases/kubuntu/.pool/kubuntu-9.10-desktop-i386.iso"><strong>PC (Intel x86) desktop CD</strong></a><br />
일반적인 데스크탑 용도로 쓸 경우 다운 받으면 된다.</p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/kubuntu/.pool/kubuntu-9.10-desktop-amd64.iso"><strong>64-bit PC (AMD64) desktop CD</strong></a><br />
64비트 데스크탑 버전이다.</p>
<h2>Alternate install CD</h2>
<p>메모리가 부족하거나 데스크탑 환경으로 설치가 실패할 경우 다운받도록 한다.</p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/kubuntu/.pool/kubuntu-9.10-alternate-i386.iso"><strong>PC (Intel x86) alternate install CD</strong></a><br />
32비트 버전이다.</p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/kubuntu/.pool/kubuntu-9.10-alternate-amd64.iso"><strong>64-bit PC (AMD64) alternate install CD</strong></a><br />
64비트 버전이다.</p>
<h2>Netbook live CD</h2>
<p>넷북을 위한 Ubuntu Netbook Remix의 라이브 시디</p>
<p><a href="http://mirror.star4u.org/ubuntu-releases/kubuntu/.pool/kubuntu-9.10-netbook-i386.iso"><strong>PC (Intel x86) netbook live CD</strong></a></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 1178px; width: 1px; height: 1px;">http://mirror.star4u.org/ubuntu-releases/kubuntu/.pool/kubuntu-9.10-netbook-i386.iso</div>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=267</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MySQL &#8211;open-files-limit 옵션</title>
		<link>http://star4u.org/blog/?p=263</link>
		<comments>http://star4u.org/blog/?p=263#comments</comments>
		<pubDate>Wed, 28 Oct 2009 00:55:31 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[컴퓨터]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[open-files-limit]]></category>
		<category><![CDATA[open_files_limit]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=263</guid>
		<description><![CDATA[<p>mysql의 myisam은 테이블 한개당 파일 디스크립터 2개가 필요하다. 테이블이 많은 서버의 경우 Too many open files 에러가 나면서 접속이 잘 안되는 경우가 있는데 my.cnf 에 open_files_limit = 숫자 와 같은 식으로 open_files_limit 값을 증가시켜주면 된다.</p> <p>그런데 이 값은 최대 65535까지 설정이 가능한데 정말 많은 테이블을 가지고 있는 서버의 경우에는 이 값 이상이 필요한 경우가 [...]]]></description>
			<content:encoded><![CDATA[<p>mysql의 myisam은 테이블 한개당 파일 디스크립터 2개가 필요하다.<br />
테이블이 많은 서버의 경우 Too many open files 에러가 나면서 접속이 잘 안되는<br />
경우가 있는데 my.cnf 에 open_files_limit = 숫자 와 같은 식으로 open_files_limit 값을<br />
증가시켜주면 된다.</p>
<p>그런데 이 값은 최대 65535까지 설정이 가능한데 정말 많은 테이블을<br />
가지고 있는 서버의 경우에는 이 값 이상이 필요한 경우가 있다.<br />
이럴 경우에는 mysql 시작 시 옵션으로 설정해줘야 한다.</p>
<p>centos 5의 경우 /etc/init.d/mysqld 가 시작 스크립트이다.<br />
61번째줄을 보면 다음과 같을 것이다.</p>
<blockquote><p>/usr/bin/mysqld_safe   &#8211;datadir=&#8221;$datadir&#8221; &#8211;socket=&#8221;$socketfile&#8221; \<br />
&#8211;log-error=&#8221;$errlogfile&#8221; &#8211;pid-file=&#8221;$mypidfile&#8221; \<br />
&#8211;user=mysql &gt;/dev/null 2&gt;&amp;1 &amp;</p></blockquote>
<p>여기에 &#8211;open-files-limit 옵션을 추가해준다.</p>
<blockquote><p>/usr/bin/mysqld_safe   &#8211;datadir=&#8221;$datadir&#8221; &#8211;socket=&#8221;$socketfile&#8221; \<br />
&#8211;log-error=&#8221;$errlogfile&#8221; &#8211;pid-file=&#8221;$mypidfile&#8221; \<br />
&#8211;user=mysql <strong>&#8211;open-files-limit=102400</strong> &gt;/dev/null 2&gt;&amp;1 &amp;</p></blockquote>
<p>my.cnf에는 open_files_limit 옵션이고 mysql 시작 스크립트에는 &#8211;open-files-limit 옵션이다.</p>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=263</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>rsync  3</title>
		<link>http://star4u.org/blog/?p=253</link>
		<comments>http://star4u.org/blog/?p=253#comments</comments>
		<pubDate>Tue, 11 Aug 2009 14:43:55 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[컴퓨터]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rhel]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[동기화]]></category>
		<category><![CDATA[리눅스]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=253</guid>
		<description><![CDATA[<p>보통 동기화 목적으로 rsync를 많이 쓰고 있는데 rsync 3는 2.x와 비교하면 눈에 띄는 성능 향상이 있다. 메모리도 적게 먹을뿐 아니라 하위 디렉토리가 매우 많은 디렉토리의 동기화도 빠르게 된다.</p> <p>최근에 나오는 리눅스 배포판은 rsync 3가 들어가 있지만 서버 용도로 많이 쓰는 RHEL5(CentOS5)는 2.x를 사용하고 있기 때문에 Fedora 11에 있는 패키지를 리빌드했다. 다운로드는 http://mirror.star4u.org/darchon/el5/ 에서 할 [...]]]></description>
			<content:encoded><![CDATA[<p>보통 동기화 목적으로 rsync를 많이 쓰고 있는데 rsync 3는 2.x와 비교하면 눈에 띄는 성능 향상이 있다. 메모리도 적게 먹을뿐 아니라 하위 디렉토리가 매우 많은 디렉토리의 동기화도 빠르게 된다.</p>
<p>최근에 나오는 리눅스 배포판은 rsync 3가 들어가 있지만 서버 용도로 많이 쓰는 RHEL5(CentOS5)는 2.x를 사용하고 있기 때문에 Fedora 11에 있는 패키지를 리빌드했다. 다운로드는 <a href="http://mirror.star4u.org/darchon/el5/">http://mirror.star4u.org/darchon/el5/</a> 에서 할 수 있다. 그 밖에 Fedora에 있는 유용한 패키지 몇가지를 RHEL5용으로 리빌드했고 <a href="http://nginx.net/">nginx</a>는 최신 개발 버전까지 패키지를 유지하고 있다.</p>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=253</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>사무실 책상</title>
		<link>http://star4u.org/blog/?p=245</link>
		<comments>http://star4u.org/blog/?p=245#comments</comments>
		<pubDate>Tue, 11 Aug 2009 14:31:03 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[일상]]></category>
		<category><![CDATA[리얼포스]]></category>
		<category><![CDATA[마우스]]></category>
		<category><![CDATA[사무실]]></category>
		<category><![CDATA[책상]]></category>
		<category><![CDATA[키보드]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=245</guid>
		<description><![CDATA[<p class="wp-caption-text">사무실 책상</p> <p>회사에서 기본으로 지급되는 싸구려 키보드와 마우스를 쓰다가 손이 아파서 큰 맘 먹고 지른지 한달쯤 되었다.</p> <p>리얼포스87 한글판(360000원) 키보드에 로지텍 G3 레이저(69900원) 마우스, steelseries QcK mass(25500원) 마우스 패드를 합치면 약 45만원가량 된다. 돈 지랄로 보일 수도 있지만 하루종일 키보드를 두드려야 하는 직업의 특성 상 비싼만큼 제값을 한다는게 느껴진다.</p> <p>키보드의 경우 수명이 기계식보다도 [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_246" class="wp-caption alignnone" style="width: 624px"><a href="http://star4u.org/blog/wp-content/uploads/2009/08/darchon_desk.jpg" target="_blank"><img class="size-full wp-image-246  " title="darchon_desk" src="http://star4u.org/blog/wp-content/uploads/2009/08/darchon_desk.jpg" alt="사무실 책상" width="614" height="461" /></a><p class="wp-caption-text">사무실 책상</p></div>
<p>회사에서 기본으로 지급되는 싸구려 키보드와 마우스를 쓰다가 손이 아파서 큰 맘 먹고 지른지 한달쯤 되었다.</p>
<p>리얼포스87 한글판(360000원) 키보드에 로지텍 G3 레이저(69900원) 마우스, steelseries QcK mass(25500원) 마우스 패드를 합치면 약 45만원가량 된다. 돈 지랄로 보일 수도 있지만 하루종일 키보드를 두드려야 하는 직업의 특성 상 비싼만큼 제값을 한다는게 느껴진다.</p>
<p>키보드의 경우 수명이 기계식보다도 길기 때문에 충분히 오래 쓸 수 있다. 돈 아깝다고 생각되지 않는 몇 안되는 물건이다. 게다가 키패드 부분이 없어서 오른쪽 팔이 벌어지지 않기 때문에 더욱 맘에 든다.</p>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=245</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>RHEL 5.4부터 ext4 정식 지원?</title>
		<link>http://star4u.org/blog/?p=237</link>
		<comments>http://star4u.org/blog/?p=237#comments</comments>
		<pubDate>Mon, 11 May 2009 02:40:23 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[컴퓨터]]></category>
		<category><![CDATA[ext4]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rhel]]></category>
		<category><![CDATA[리눅스]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=237</guid>
		<description><![CDATA[<p>레드햇 개발커널을 보던중 아래와 같은 changelog를 발견했다.</p> <p>* Tue Apr 28 2009 Don Zickus [2.6.18-142.el5] - [fs] ext4: update config options (Eric Sandeen ) [485315] - [fs] ext4: post-2.6.29 fixes (Eric Sandeen ) [485315] - [fs] backport patch for 2.6.29 ext4 (Eric Sandeen ) [485315] - [fs] rebase ext4 and jbd2 to 2.6.29 codebase [...]]]></description>
			<content:encoded><![CDATA[<p>레드햇 <a href="http://people.redhat.com/dzickus/el5/">개발커널</a>을 보던중 아래와 같은 changelog를 발견했다.</p>
<blockquote><p>* Tue Apr 28 2009 Don Zickus  [2.6.18-142.el5]<br />
- [fs] ext4: update config options (Eric Sandeen ) [485315]<br />
- [fs] ext4: post-2.6.29 fixes (Eric Sandeen ) [485315]<br />
- [fs] backport patch for 2.6.29 ext4 (Eric Sandeen ) [485315]<br />
- [fs] rebase ext4 and jbd2 to 2.6.29 codebase (Eric Sandeen ) [485315 487933 487940 487944 487947] {CVE-2009-0745  CVE-2009-0746  CVE-2009-0747  CVE-2009-0748}</p></blockquote>
<p>2.6.29의 ext4 코드가 backport되었다.<br />
즉 RHEL 5.4 커널에 최신의 ext4 코드가 들어갔다는 말이다.<br />
<a href="http://people.redhat.com/dzickus/el5/144.el5">rpm으로 빌드된 커널</a>을 받아서 설치해봤더니 ext4dev.ko 이었던 커널 모듈이<br />
ext4.ko 로 바뀐걸 볼 수 있었다.<br />
ext4dev.ko는 ext4의 개발버전이지만 ext4.ko는 안정버전이다.</p>
<p>RHEL 5.4에서는 xfs에 이어서 ext4까지 선택의 폭이 커질 듯 싶다.</p>
<p>ext4가 안정버전으로 바뀐 후 초반에 파일이 날라가는등 문제가 있었지만 리눅스<br />
개발 특성상 빠르게 패치가 되었고 앞으로도 그럴것이다. RHEL 5.4가 출시될<br />
시점에는 ext3를 대신할만큼 충분히 안정될것이라 생각된다.</p>
<p>참고로 5월 26일 출시될 예정인 <a href="http://fedoraproject.org/wiki/Releases/11">페도라 11</a>에서는 ext4가 설치시 기본 파일 시스템이<br />
될 예정이다.</p>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=237</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>고객과의 소통을 거부하는 피씨뱅크</title>
		<link>http://star4u.org/blog/?p=226</link>
		<comments>http://star4u.org/blog/?p=226#comments</comments>
		<pubDate>Fri, 24 Apr 2009 06:35:03 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[일상]]></category>
		<category><![CDATA[A/S]]></category>
		<category><![CDATA[pcbank]]></category>
		<category><![CDATA[소통]]></category>
		<category><![CDATA[피씨뱅크]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=226</guid>
		<description><![CDATA[<p>피씨뱅크에서 산 LCD 모니터가 화면이 나오지 않는 문제가 생겨서 A/S를 보냈다.</p> <p>하지만 2주가 지난 지금까지 연락 한번 오지를 않는다.</p> <p>목마른자가 우물을 판다고 고객센터에 전화를 해봤다.</p> <p class="wp-caption-text">연결되지 않는 피씨뱅크 고객센터</p> <p>하지만 통화중 아니면 ARS 안내만 나올뿐 받지를 않는다.</p> <p>생각날때마다 전화를 해보지만 언제나 마찬가지다.</p> <p>홈페이지에 질답 게시판이 있었는데 그것도 사라져버렸다.</p> <p>1:1 상담이란게 있어서 글을 쓸려고하니 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pcbank21n.com">피씨뱅크</a>에서 산 LCD 모니터가 화면이 나오지 않는 문제가 생겨서 A/S를 보냈다.</p>
<p>하지만 2주가 지난 지금까지 연락 한번 오지를 않는다.</p>
<p>목마른자가 우물을 판다고 고객센터에 전화를 해봤다.</p>
<div id="attachment_227" class="wp-caption alignnone" style="width: 180px"><a href="http://star4u.org/blog/wp-content/uploads/2009/04/pcbank00.jpg"><img class="size-full wp-image-227" title="pcbank00" src="http://star4u.org/blog/wp-content/uploads/2009/04/pcbank00.jpg" alt="pcbank phone number" width="170" height="115" /></a><p class="wp-caption-text">연결되지 않는 피씨뱅크 고객센터</p></div>
<p>하지만 통화중 아니면 ARS 안내만 나올뿐 받지를 않는다.</p>
<p>생각날때마다 전화를 해보지만 언제나 마찬가지다.</p>
<p>홈페이지에 질답 게시판이 있었는데 그것도 사라져버렸다.</p>
<p>1:1 상담이란게 있어서 글을 쓸려고하니 로그인을 하라고 한다.</p>
<p>그래서 회원가입을 할려고 했는데 핸드폰으로 인증을 받아야 가입이 된다고 한다.</p>
<p><a href="http://star4u.org/blog/wp-content/uploads/2009/04/pcbank02.jpg"><img class="alignnone size-full wp-image-228" title="pcbank02" src="http://star4u.org/blog/wp-content/uploads/2009/04/pcbank02.jpg" alt="pcbank02" width="454" height="50" /></a></p>
<p>전화번호를 넣고 핸드폰인증을 눌러봤지만 문자는 오지 않는다.</p>
<p>혹시나 하고 다시 해봐도 마찬가지다.</p>
<p>고객센터 위치를 보면 가산 디지털단지역 근처다.</p>
<p>사무실이 구로디지털역 근처라 가까워서 찾아갈까 하고 봤는데 친절하게도 오지말라신다.</p>
<p><a href="http://star4u.org/blog/wp-content/uploads/2009/04/pcbank01.jpg"><img class="alignnone size-full wp-image-229" title="pcbank01" src="http://star4u.org/blog/wp-content/uploads/2009/04/pcbank01.jpg" alt="pcbank01" width="336" height="395" /></a></p>
<p>중소기업이 대기업과의 경쟁에서 살아 남으려면 가격만 싸다고 되는게 아니다.</p>
<p>품질도 좋고 A/S도 좋아야 살아남을 수 있을까 말까 한 세상에 참으로 대범한 회사가</p>
<p>아닐 수 없다.</p>
<p>앞으로 내가 중소기업 가전제품을 사면 사람이 아니다.</p>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=226</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>우분투 9.04 정식버전 다운로드</title>
		<link>http://star4u.org/blog/?p=220</link>
		<comments>http://star4u.org/blog/?p=220#comments</comments>
		<pubDate>Wed, 22 Apr 2009 16:04:00 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[컴퓨터]]></category>
		<category><![CDATA[9.04]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[리눅스]]></category>
		<category><![CDATA[우분투]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=220</guid>
		<description><![CDATA[<p></p> <p>우분투 9.04의 미러링이 시작되었다. 트래픽이 몰리는걸 피하기 위해 공식 다운로드 시점 이전에 미러 서버로 데이터를 미러링 하는것이다.</p> <p>.pool 이라는 히든 디렉토리에 실제 iso 파일들이 있고 각 버전별로 디렉토리를 만들고 링크를 거는 방식이다.</p> <p>http://ftp.daum.net/ubuntu-releases/.pool 위 서버는 아직 데이터를 받아 오는 중이라 iso 파일이 빠진게 많다. 뭐 내일 아침까지는 다 받아져 있겠지만&#8230;</p> <p>업데이트 다음 서버가 [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="ubuntu" src="http://www.ubuntu.com/themes/ubuntu07/images/masthead-cds.jpg" alt="" width="204" height="95" /></p>
<p>우분투 9.04의 미러링이 시작되었다.<br />
트래픽이 몰리는걸 피하기 위해 공식 다운로드 시점 이전에 미러 서버로<br />
데이터를 미러링 하는것이다.</p>
<p>.pool 이라는 히든 디렉토리에 실제 iso 파일들이 있고 각 버전별로 디렉토리를<br />
만들고 링크를 거는 방식이다.</p>
<p><span style="text-decoration: line-through;"><a href="http://ftp.daum.net/ubuntu-releases/.pool/">http://ftp.daum.net/ubuntu-releases/.pool</a><br />
위 서버는 아직 데이터를 받아 오는 중이라 iso 파일이 빠진게 많다.<br />
뭐 내일 아침까지는 다 받아져 있겠지만&#8230;</span></p>
<p><strong>업데이트<br />
다음 서버가 많이 느리니 아래 서버에서 받도록 하자.</strong></p>
<p>난 비공식 미러니까 내 맘대로 공개한다.<br />
<a href="http://mirror.star4u.org/ubuntu-releases/jaunty/">http://mirror.star4u.org/ubuntu-releases/jaunty/</a><br />
<a href="http://mirror.star4u.org/ubuntu-releases/kubuntu/jaunty/">http://mirror.star4u.org/ubuntu-releases/kubuntu/jaunty/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=220</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RHEL 5.4부터 XFS 지원?</title>
		<link>http://star4u.org/blog/?p=214</link>
		<comments>http://star4u.org/blog/?p=214#comments</comments>
		<pubDate>Tue, 21 Apr 2009 01:33:39 +0000</pubDate>
		<dc:creator>다콘</dc:creator>
				<category><![CDATA[컴퓨터]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[rhel]]></category>
		<category><![CDATA[sgi]]></category>
		<category><![CDATA[xfs]]></category>
		<category><![CDATA[레드햇]]></category>
		<category><![CDATA[리눅스]]></category>

		<guid isPermaLink="false">http://star4u.org/blog/?p=214</guid>
		<description><![CDATA[<p>RHEL 5.4 개발 커널을 살펴 보던 중 재미난걸 발견했다.</p> * Fri Apr 03 2009 Don Zickus &#60;dzickus@redhat.com&#62; [2.6.18-138.el5] - [fs] xfs: misc upstream fixes (Eric Sandeen ) [470845] - [fs] xfs: fix compat ioctls (Eric Sandeen ) [470845] - [fs] xfs: new aops interface (Eric Sandeen ) [470845] - [fs] xfs: backport to rhel5.4 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://people.redhat.com/dzickus/el5/">RHEL 5.4 개발 커널</a>을 살펴 보던 중 재미난걸 발견했다.</p>
<blockquote><pre>* Fri Apr 03 2009 Don Zickus &lt;dzickus@redhat.com&gt; [2.6.18-138.el5]
- [fs] xfs: misc upstream fixes (Eric Sandeen ) [470845]
- [fs] xfs: fix compat ioctls (Eric Sandeen ) [470845]
- [fs] xfs: new aops interface (Eric Sandeen ) [470845]
- [fs] xfs: backport to rhel5.4 kernel (Eric Sandeen ) [470845]
- [fs] xfs:  update to 2.6.28.6 codebase (Eric Sandeen ) [470845]</pre>
</blockquote>
<p>리눅스 파일 시스템 중의 하나인 <a href="http://oss.sgi.com/projects/xfs/">XFS</a>가 레드햇 커널에 들어간 것이다.<br />
XFS는 <a href="http://www.sgi.com/">SGI</a>에 의해서 개발된 저널링 파일 시스템이다.<br />
사실 재미있는건 이 XFS를 개발한 <a href="http://www.sgi.com/company_info/newsroom/press_releases/2009/april/rackable.html">SGI가 4월 1일자로 파산했다는 뉴스</a>가 나왔다는거다.<br />
결국 2500만 달러에 랙커블에 인수 되었다.</p>
<p>4월 1일에 XFS를 만든 SGI가 파산하고 4월 3일에 레드햇 커널에 XFS지원이 들어간건<br />
단지 우연의 일치일까?</p>
]]></content:encoded>
			<wfw:commentRss>http://star4u.org/blog/?feed=rss2&amp;p=214</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
