<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>EMSTONE Bebop &#187; Ubuntu</title>
	<atom:link href="http://bebop.emstone.com/tags/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://bebop.emstone.com</link>
	<description>엠스톤 개발팀 블로그</description>
	<lastBuildDate>Sun, 29 Jan 2012 05:25:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
		<item>
		<title>사진 파일 이름 변경하기</title>
		<link>http://lethean.pe.kr/2011/02/22/renaming-photo-files/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=renaming-photo-files&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25ec%2582%25ac%25ec%25a7%2584-%25ed%258c%258c%25ec%259d%25bc-%25ec%259d%25b4%25eb%25a6%2584-%25eb%25b3%2580%25ea%25b2%25bd%25ed%2595%2598%25ea%25b8%25b0</link>
		<comments>http://lethean.pe.kr/2011/02/22/renaming-photo-files/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=renaming-photo-files#comments</comments>
		<pubDate>Tue, 22 Feb 2011 14:58:59 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[ArchLinux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1600</guid>
		<description><![CDATA[요즘 디지털 카메라나 휴대폰으로 촬영한 JPEG 파일에는 EXIF 정보가 삽입되어 있어서 나름 유용할 때가 많습니다. 카메라에 대한 자세한 사양(?) 정보에는 관심이 없지만, 촬영한 시각이라든지 카메라를 세워서 촬영했는지 여부는 물론, 카메라 GPS 옵션을 켜면 기록되는 촬영 장소의 정확한 좌표는 가끔 두려울 &#8230; <a href="http://lethean.pe.kr/2011/02/22/renaming-photo-files/">Continue reading <span>&#8594;</span></a> <a href="http://lethean.pe.kr/2011/02/22/renaming-photo-files/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=renaming-photo-files">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>요즘 디지털 카메라나 휴대폰으로 촬영한 JPEG 파일에는 <a href="http://en.wikipedia.org/wiki/EXIF">EXIF</a> 정보가 삽입되어 있어서 나름 유용할 때가 많습니다. 카메라에 대한 자세한 사양(?) 정보에는 관심이 없지만, 촬영한 시각이라든지 카메라를 세워서 촬영했는지 여부는 물론, 카메라 GPS 옵션을 켜면 기록되는 촬영 장소의 정확한 좌표는 가끔 두려울 때도 있습니다.</p>
<p>아무튼 요즘은 윈도우나 맥 부럽지 않은 리눅스 사진 관리 프로그램들이 많이 있어서 편하긴 한데, 이런 프로그램들이 존재하기 전부터, EXIF 정보가 포함되지도 않았던 시절부터 디렉토리별로 관리해오던 습관을 버리지 못하는 게 문제입니다. 예를 들어 폴더는 알아보기 쉽게 <code>YYYYMMDD-장소또는이벤트이름</code> 식으로 이름짓고, 안에 들어있는 JPEG 파일은 <code>YYYYMMDD-hhmmss-photo.jpg</code>, 동영상 파일은 <code>YYYYMMDD-hhmmss-movie.mp4</code> 식으로 이름을 지어 줍니다.</p>
<p>물론, 이런 작업을 모두 수작업으로 하지는 않습니다. EXIF 정보에 문외한이던 시절에는 <a href="http://live.gnome.org/gthumb">gthumb</a> 같은 프로그램의 이름일괄변경(<code>Rename...</code>) 기능을 이용해 자동으로 날짜 뒤에 일련번호를 붙이기도 했습니다.</p>
<p>하지만 요즘은 그것도 귀찮아서 <code>exiv2</code> / <code>rename</code> 명령어를 이용해 한꺼번에 변경해 버립니다. <a href="http://www.exiv2.org/"><code>exiv2</code></a> 프로그램을 이용해 EXIF 정보에 들어있는 촬영 시각을 기준으로 사진 파일 이름을 변경하고,  <code>rename</code> 명령어를 이용해 대문자로 된 <code>.JPG</code> 확장자를 소문자 <code>.jpg</code> 확장자로 한번에 변경합니다. 예를 들어 위에서 설명한 예처럼 파일 이름을 변경하려면 사진 파일이 들어 있는 디렉토리에서 다음과 같이 실행하면 됩니다.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ rename .JPG .jpg <span style="color: #000000; font-weight: bold;">*</span>.JPG
$ exiv2 <span style="color: #660033;">-r</span> <span style="color: #ff0000;">'%Y%m%d-%H%M%S-photo'</span> <span style="color: #660033;">-k</span> rename <span style="color: #000000; font-weight: bold;">*</span>.jpg</pre></div></div>

<p><code>rename</code> 명령어는 대부분 배포판에 기본으로 설치되어 있으나 <code>exiv2</code> 프로그램은 수동으로 패키지를 설치해야 할 수도 있습니다. 게다가, 우분투의 <code>rename</code> 명령어는 perl 패키지에 포함되어 있는 버전인데 아치 리눅스는 util-linux 패키지에 포함되어 있는 거라 사용법이 조금 다릅니다. 참고로 위 예제는 아치 리눅스 버전입니다. 하지만 <code>exiv2</code>, <code>rename</code> 명령어 모두 매뉴얼 페이지를 보면 자세한 사용 예제가 있으므로 쉽게 사용할 수 있습니다.</p>
<p>그리고 이 글은 사실, 나이가 들수록 자꾸만 옵션을 잊어버려 다시 찾기 귀찮아서 기록하고 있습니다&#8230; :)</p>
]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2011/02/22/renaming-photo-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>LG XNOTE C1 노트북 우분투 사용시 사운드 재생 문제</title>
		<link>http://lethean.pe.kr/2010/08/09/sound-problem-on-lg-xnote-c1-notebook-in-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sound-problem-on-lg-xnote-c1-notebook-in-ubuntu&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lg-xnote-c1-%25eb%2585%25b8%25ed%258a%25b8%25eb%25b6%2581-%25ec%259a%25b0%25eb%25b6%2584%25ed%2588%25ac-%25ec%2582%25ac%25ec%259a%25a9%25ec%258b%259c-%25ec%2582%25ac%25ec%259a%25b4%25eb%2593%259c-%25ec%259e%25ac%25ec%2583%259d-%25eb%25ac%25b8%25ec%25a0%259c</link>
		<comments>http://lethean.pe.kr/2010/08/09/sound-problem-on-lg-xnote-c1-notebook-in-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sound-problem-on-lg-xnote-c1-notebook-in-ubuntu#comments</comments>
		<pubDate>Mon, 09 Aug 2010 12:47:46 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1377</guid>
		<description><![CDATA[오랫동안 묵혀두었던 LG XNOTE C1 노트북에 우분투를 설치했는데, 사운드 카드를 통해 오디오가 재생되지 않았습니다. 한동안 오디오를 재생할 일이 없어서 그냥 사용하다가, 오늘 갑자기 필요 <a href="http://lethean.pe.kr/2010/08/09/sound-problem-on-lg-xnote-c1-notebook-in-ubuntu/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=sound-problem-on-lg-xnote-c1-notebook-in-ubuntu">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[오랫동안 묵혀두었던 LG XNOTE C1 노트북에 우분투를 설치했는데, 사운드 카드를 통해 오디오가 재생되지 않았습니다. 한동안 오디오를 재생할 일이 없어서 그냥 사용하다가, 오늘 갑자기 필요해져서 급하게 문제를 해결했는데, 그 과정을 기록해 둡니다. 일단 확인 결과 사운드 카드 관련 드라이버는 모두 정상적으로 &#8230; <a href="http://lethean.pe.kr/2010/08/09/sound-problem-on-lg-xnote-c1-notebook-in-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2010/08/09/sound-problem-on-lg-xnote-c1-notebook-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>우분투 10.10 한글 글꼴 설정</title>
		<link>http://lethean.pe.kr/2010/08/06/ubuntu-10-10-korean-font-configuration/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-10-10-korean-font-configuration&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25ec%259a%25b0%25eb%25b6%2584%25ed%2588%25ac-10-10-%25ed%2595%259c%25ea%25b8%2580-%25ea%25b8%2580%25ea%25bc%25b4-%25ec%2584%25a4%25ec%25a0%2595</link>
		<comments>http://lethean.pe.kr/2010/08/06/ubuntu-10-10-korean-font-configuration/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-10-10-korean-font-configuration#comments</comments>
		<pubDate>Fri, 06 Aug 2010 12:41:56 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[FontConfig]]></category>
		<category><![CDATA[Hangul]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1372</guid>
		<description><![CDATA[Btrfs 파일 시스템을 사용해 보려고 새로 나온 우분투 10.10 버전을 설치했습니다. 그런데, 아니나 다를까 한글 글꼴 설정은 여전히 맘에 들지 않는군요. 예전에는 이것 저것 쉽게 찾아 고쳤는 <a href="http://lethean.pe.kr/2010/08/06/ubuntu-10-10-korean-font-configuration/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=ubuntu-10-10-korean-font-configuration">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Btrfs 파일 시스템을 사용해 보려고 새로 나온 우분투 10.10 버전을 설치했습니다. 그런데, 아니나 다를까 한글 글꼴 설정은 여전히 맘에 들지 않는군요. 예전에는 이것 저것 쉽게 찾아 고쳤는데, 시간이 점점 흘러서 그 과정을 자꾸 잊어버리게 되다 보니 오늘은 조금 더 많이 헤매게 &#8230; <a href="http://lethean.pe.kr/2010/08/06/ubuntu-10-10-korean-font-configuration/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2010/08/06/ubuntu-10-10-korean-font-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>글꼴마다 다른 힌팅 사용하기</title>
		<link>http://lethean.pe.kr/2010/07/19/hinting-for-different-fonts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hinting-for-different-fonts&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25ea%25b8%2580%25ea%25bc%25b4%25eb%25a7%2588%25eb%258b%25a4-%25eb%258b%25a4%25eb%25a5%25b8-%25ed%259e%258c%25ed%258c%2585-%25ec%2582%25ac%25ec%259a%25a9%25ed%2595%2598%25ea%25b8%25b0</link>
		<comments>http://lethean.pe.kr/2010/07/19/hinting-for-different-fonts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hinting-for-different-fonts#comments</comments>
		<pubDate>Mon, 19 Jul 2010 02:04:22 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Cairo]]></category>
		<category><![CDATA[FontConfig]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1348</guid>
		<description><![CDATA[구글 리더를 읽다가 어떤 분이 터미널 글꼴로 &#8216;Droid Sans Mono&#8217; 사용한 포스트를 보고 따라해 보았습니다. 그런데, 이상하게도 글꼴이 예쁘지 않아서 확인해 보니 폰트 설정에서 힌팅(hin... <a href="http://lethean.pe.kr/2010/07/19/hinting-for-different-fonts/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=hinting-for-different-fonts">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[구글 리더를 읽다가 어떤 분이 터미널 글꼴로 &#8216;Droid Sans Mono&#8217; 사용한 포스트를 보고 따라해 보았습니다. 그런데, 이상하게도 글꼴이 예쁘지 않아서 확인해 보니 폰트 설정에서 힌팅(hinting)을 살짝(slight)만 사용하도록 설정해야 했습니다. 사실, 대부분의 영문 폰트는 힌팅을 살짝 주어야 원래 의도대로 멋지게 표시되는 &#8230; <a href="http://lethean.pe.kr/2010/07/19/hinting-for-different-fonts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2010/07/19/hinting-for-different-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>우분투 10.10 기본 파일시스템 – Btrfs</title>
		<link>http://lethean.pe.kr/2010/05/16/btrfs-as-the-default-filesystem-in-ubuntu-10-10/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=btrfs-as-the-default-filesystem-in-ubuntu-10-10&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25ec%259a%25b0%25eb%25b6%2584%25ed%2588%25ac-10-10-%25ea%25b8%25b0%25eb%25b3%25b8-%25ed%258c%258c%25ec%259d%25bc%25ec%258b%259c%25ec%258a%25a4%25ed%2585%259c-%25e2%2580%2593-btrfs</link>
		<comments>http://lethean.pe.kr/2010/05/16/btrfs-as-the-default-filesystem-in-ubuntu-10-10/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=btrfs-as-the-default-filesystem-in-ubuntu-10-10#comments</comments>
		<pubDate>Sat, 15 May 2010 17:44:52 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1322</guid>
		<description><![CDATA[Btrfs 사용기를 포스팅한 지 얼마 되지도 않았는데, 우분투 배포판 10.10 버전 기본 파일시스템으로 Btrfs를 사용할지도 모른다는 소식이 들려옵니다. 인텔(Intel) 모블린(Moblin)과 노키아(Nokia) 마에... <a href="http://lethean.pe.kr/2010/05/16/btrfs-as-the-default-filesystem-in-ubuntu-10-10/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=btrfs-as-the-default-filesystem-in-ubuntu-10-10">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Btrfs 사용기를 포스팅한 지 얼마 되지도 않았는데, 우분투 배포판 10.10 버전 기본 파일시스템으로 Btrfs를 사용할지도 모른다는 소식이 들려옵니다. 인텔(Intel) 모블린(Moblin)과 노키아(Nokia) 마에모(Maemo) 플랫폼이 통합된 미고(MeeGo) 플랫폼에서도 Btrfs 파일시스템을 채택하더니 바로 우분투 다음 버전도 채택할 지 모른다는 얘기입니다. 세부 일정은, Btrfs &#8230; <a href="http://lethean.pe.kr/2010/05/16/btrfs-as-the-default-filesystem-in-ubuntu-10-10/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2010/05/16/btrfs-as-the-default-filesystem-in-ubuntu-10-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>Gource 소스 저장소 시각화 프로그램</title>
		<link>http://lethean.pe.kr/2010/04/23/gource-source-visualization/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gource-source-visualization&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gource-%25ec%2586%258c%25ec%258a%25a4-%25ec%25a0%2580%25ec%259e%25a5%25ec%2586%258c-%25ec%258b%259c%25ea%25b0%2581%25ed%2599%2594-%25ed%2594%2584%25eb%25a1%259c%25ea%25b7%25b8%25eb%259e%25a8</link>
		<comments>http://lethean.pe.kr/2010/04/23/gource-source-visualization/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gource-source-visualization#comments</comments>
		<pubDate>Fri, 23 Apr 2010 01:59:16 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1304</guid>
		<description><![CDATA[LWN.net 기사 중에서 소스 코드 작업 시각화 관련 기사를 보고 재미있을 것 같아 Gource 프로그램을 이용해 회사에서 진행중인 프로젝트에 적용해 보았습니다. http://www.youtube.com/watch?v=RUwDxM28EBA 만... <a href="http://lethean.pe.kr/2010/04/23/gource-source-visualization/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=gource-source-visualization">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[LWN.net 기사 중에서 소스 코드 작업 시각화 관련 기사를 보고 재미있을 것 같아 Gource 프로그램을 이용해 회사에서 진행중인 프로젝트에 적용해 보았습니다. http://www.youtube.com/watch?v=RUwDxM28EBA 만드는 방법은 우선 필요한 패키지를 설치하고(Ubuntu 기준) $ sudo apt-get install gource ffmpeg Git 저장소가 있는 디렉토리로 이동해서 &#8230; <a href="http://lethean.pe.kr/2010/04/23/gource-source-visualization/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2010/04/23/gource-source-visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>우분투에서 ccache 사용하기</title>
		<link>http://lethean.pe.kr/2010/02/04/using-ccache-in-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-ccache-in-ubuntu&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25ec%259a%25b0%25eb%25b6%2584%25ed%2588%25ac%25ec%2597%2590%25ec%2584%259c-ccache-%25ec%2582%25ac%25ec%259a%25a9%25ed%2595%2598%25ea%25b8%25b0</link>
		<comments>http://lethean.pe.kr/2010/02/04/using-ccache-in-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-ccache-in-ubuntu#comments</comments>
		<pubDate>Thu, 04 Feb 2010 04:30:53 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[GCC]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1222</guid>
		<description><![CDATA[ccache는 워낙 유명하고 오래된 개발 도구라서, 검색해보면 우리말로 된 글도 많이 찾을 수 있으므로 자세한 설명은 생략하고, 최근에 다른 개발 장비를 구축할 일이 있어서 검토해보다가, 페 <a href="http://lethean.pe.kr/2010/02/04/using-ccache-in-ubuntu/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=using-ccache-in-ubuntu">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[ccache는 워낙 유명하고 오래된 개발 도구라서, 검색해보면 우리말로 된 글도 많이 찾을 수 있으므로 자세한 설명은 생략하고, 최근에 다른 개발 장비를 구축할 일이 있어서 검토해보다가, 페도라는 이미 기본으로 ccache를 사용하도록 되어 있고, 우분투 / 데비안 계열에서도 매우 쉽게 사용할 수 &#8230; <a href="http://lethean.pe.kr/2010/02/04/using-ccache-in-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2010/02/04/using-ccache-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>아주 잠시 Btrfs 파일시스템을 사용해보고</title>
		<link>http://lethean.pe.kr/2010/01/25/btrfs-for-a-while/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=btrfs-for-a-while&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25ec%2595%2584%25ec%25a3%25bc-%25ec%259e%25a0%25ec%258b%259c-btrfs-%25ed%258c%258c%25ec%259d%25bc%25ec%258b%259c%25ec%258a%25a4%25ed%2585%259c%25ec%259d%2584-%25ec%2582%25ac%25ec%259a%25a9%25ed%2595%25b4%25eb%25b3%25b4%25ea%25b3%25a0</link>
		<comments>http://lethean.pe.kr/2010/01/25/btrfs-for-a-while/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=btrfs-for-a-while#comments</comments>
		<pubDate>Mon, 25 Jan 2010 13:42:49 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1207</guid>
		<description><![CDATA[요즘 여기저기서 Btrfs 파일시스템 얘기가 많아서, 한번 써봐야겠다 싶어 우분투 개발버전(lucid, linux kernel 2.6.32) 저장소를 확인해보니 패키지 하나만(btrfs-tools) 설치하면 되길래 홈디렉토리를 b... <a href="http://lethean.pe.kr/2010/01/25/btrfs-for-a-while/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=btrfs-for-a-while">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[요즘 여기저기서 Btrfs 파일시스템 얘기가 많아서, 한번 써봐야겠다 싶어 우분투 개발버전(lucid, linux kernel 2.6.32) 저장소를 확인해보니 패키지 하나만(btrfs-tools) 설치하면 되길래 홈디렉토리를 btrfs 파일시스템으로 교체해 보았습니다. 그리고 스트레스 테스트를 위해 회사에서 유지하는 모든 프로젝트의 Git 저장소를 내려받고(clone) 동시에 컴파일을 해봤습니다. 그리고 지금, 다시 &#8230; <a href="http://lethean.pe.kr/2010/01/25/btrfs-for-a-while/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2010/01/25/btrfs-for-a-while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>여러 개의 마우스 동시에 사용하기</title>
		<link>http://lethean.pe.kr/2010/01/20/using-multiple-mouses-with-xor/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25ec%2597%25ac%25eb%259f%25ac-%25ea%25b0%259c%25ec%259d%2598-%25eb%25a7%2588%25ec%259a%25b0%25ec%258a%25a4-%25eb%258f%2599%25ec%258b%259c%25ec%2597%2590-%25ec%2582%25ac%25ec%259a%25a9%25ed%2595%2598%25ea%25b8%25b0</link>
		<comments>http://lethean.pe.kr/2010/01/20/using-multiple-mouses-with-xor/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 03:55:31 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Xorg]]></category>
		<category><![CDATA[카스탈리엔]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=1195</guid>
		<description><![CDATA[구글 리더에서 오늘치 내용을 읽다가 &#8216;가난한 사람의 멀티 터치: Xorg에서 여러 개의 마우스 사용하기&#8216; 블로그를 보고 따라해 보았더니 바로 되는 걸 확인하고 기록으로 남겨둡니다. (참고로, 제가 사용하는 배포판은 우분투 개발 버전(lucid)입니다)
두 개의 마우스를 장착했을때 두 개의 포인터가 생성되고, 각각 따로 동작하는 것은 물론 마우스 별로 커서를 지정할 수도 있습니다. 하지만 아직 GTK+를 비롯한 많은 어플리케이션이 멀티 [...] <a href="http://lethean.pe.kr/2010/01/20/using-multiple-mouses-with-xor/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[구글 리더에서 오늘치 내용을 읽다가 &#8216;가난한 사람의 멀티 터치: Xorg에서 여러 개의 마우스 사용하기&#8216; 블로그를 보고 따라해 보았더니 바로 되는 걸 확인하고 기록으로 남겨둡니다. (참고로, 제가 사용하는 배포판은 우분투 개발 버전(lucid)입니다)
두 개의 마우스를 장착했을때 두 개의 포인터가 생성되고, 각각 따로 동작하는 것은 물론 마우스 별로 커서를 지정할 수도 있습니다. 하지만 아직 GTK+를 비롯한 많은 어플리케이션이 멀티 [...]]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2010/01/20/using-multiple-mouses-with-xor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
		<item>
		<title>우분투에서 이더넷 장치 변경시 장치번호 초기화</title>
		<link>http://lethean.pe.kr/2009/08/14/init-eth-dev-number-when-lan-card-changes-in-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25ec%259a%25b0%25eb%25b6%2584%25ed%2588%25ac%25ec%2597%2590%25ec%2584%259c-%25ec%259d%25b4%25eb%258d%2594%25eb%2584%25b7-%25ec%259e%25a5%25ec%25b9%2598-%25eb%25b3%2580%25ea%25b2%25bd%25ec%258b%259c-%25ec%259e%25a5%25ec%25b9%2598%25eb%25b2%2588%25ed%2598%25b8-%25ec%25b4%2588%25ea%25b8%25b0%25ed%2599%2594</link>
		<comments>http://lethean.pe.kr/2009/08/14/init-eth-dev-number-when-lan-card-changes-in-ubuntu/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 07:18:17 +0000</pubDate>
		<dc:creator>lethean</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://lethean.pe.kr/?p=984</guid>
		<description><![CDATA[이더넷 랜카드를 교체하거나, 온보드 이더넷을 CMOS에서 비활성화하고 랜카드만 사용하고 싶거나 또는 그 반대인 경우, 우분투에서 사용하는 udev 데몬은 자동으로 새로 인식한 이더넷 장치에게는 기존 이더넷 장치와 충돌하지 않도록 새로운 이더넷 번호를 할당하고 기억합니다. 예를 들면, eth0 장치가 없는데도, eth0 대신 eth1 장치로 인식하게 됩니다.
이는 장치마다 다른 설정을 장비 구성이 달라지더라도 고유하게 계속 유지할 수 있도록 [...] <a href="http://lethean.pe.kr/2009/08/14/init-eth-dev-number-when-lan-card-changes-in-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[이더넷 랜카드를 교체하거나, 온보드 이더넷을 CMOS에서 비활성화하고 랜카드만 사용하고 싶거나 또는 그 반대인 경우, 우분투에서 사용하는 udev 데몬은 자동으로 새로 인식한 이더넷 장치에게는 기존 이더넷 장치와 충돌하지 않도록 새로운 이더넷 번호를 할당하고 기억합니다. 예를 들면, eth0 장치가 없는데도, eth0 대신 eth1 장치로 인식하게 됩니다.
이는 장치마다 다른 설정을 장비 구성이 달라지더라도 고유하게 계속 유지할 수 있도록 [...]]]></content:encoded>
			<wfw:commentRss>http://lethean.pe.kr/2009/08/14/init-eth-dev-number-when-lan-card-changes-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/kr/</creativeCommons:license>
	</item>
	</channel>
</rss>

