<?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:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>lab.naoki.sato.name &#187; linux</title>
	<atom:link href="http://naoki.sato.name/lab/archives/category/os/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://naoki.sato.name/lab</link>
	<description>lab for naoki.sato</description>
	<lastBuildDate>Tue, 07 Sep 2010 13:11:15 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://naoki.sato.name/lab/archives/category/os/linux/feed" />
		<item>
		<title>ImageMagickのコマンドメモ</title>
		<link>http://naoki.sato.name/lab/archives/89</link>
		<comments>http://naoki.sato.name/lab/archives/89#comments</comments>
		<pubDate>Sun, 24 Jan 2010 14:22:31 +0000</pubDate>
		<dc:creator>naoki</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[imagemagick]]></category>

		<guid isPermaLink="false">http://naoki.sato.name/lab/?p=89</guid>
		<description><![CDATA[いつも忘れるのでメモ。主にScanSnapで取り込んだ画像を手直しする時などに役立ちそうなもの。

convert: 画像を変換する
identify: 画像の情報を得る
display: 画像を表示する (MacOSX [...]]]></description>
			<content:encoded><![CDATA[<p>いつも忘れるのでメモ。主にScanSnapで取り込んだ画像を手直しする時などに役立ちそうなもの。</p>
<ul>
<li>convert: 画像を変換する</li>
<li>identify: 画像の情報を得る</li>
<li>display: 画像を表示する (MacOSXの場合はX11が立ち上がる)</li>
</ul>
<p>やや複雑なコマンド。</p>
<pre>convert -geometry 500x500! source.jpg result.jpg</pre>
<p>source.jpgのサイズを500&#215;500に強制的に変換に変換したresult.jpgを作成する。「!」がないときはアスペクト比が保持される。</p>
<pre>convert -density 72x72 -unit PixelsPerInch source.jpg result.jpg</pre>
<p>source.jpgの解像度を72dpiに変換したresult.jpgを作成する。</p>
<pre>convert *.jpg -adjoin hoge.pdf</pre>
<p>ディレクトリ内のjpgファイルをまとめて1つのhoge.pdfを作成する。</p>
<pre>identiify -format "%f: %wx%h\n" source.jpg</pre>
<p>source.jpgの情報を&#8221;ファイル名: 幅x高さ&#8221;の型式で表示する。</p>
]]></content:encoded>
			<wfw:commentRss>http://naoki.sato.name/lab/archives/89/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://naoki.sato.name/lab/archives/89" />
	</item>
		<item>
		<title>Gnomeの設定を変更するgconf-editor</title>
		<link>http://naoki.sato.name/lab/archives/22</link>
		<comments>http://naoki.sato.name/lab/archives/22#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:31:24 +0000</pubDate>
		<dc:creator>naoki</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://naoki.sato.name/lab/archives/22</guid>
		<description><![CDATA[Gnomeの設定、例えばパネルのサイズ変更や自動的に隠す設定をするには、gconf-editor を使う。
gconf-editor
表示されたウィンドウから、Windowsのレジストリエディタの様に、設定を変更する事が [...]]]></description>
			<content:encoded><![CDATA[<p>Gnomeの設定、例えばパネルのサイズ変更や自動的に隠す設定をするには、gconf-editor を使う。</p>
<pre>gconf-editor</pre>
<p>表示されたウィンドウから、Windowsのレジストリエディタの様に、設定を変更する事が可能。<br />例えば、パネルの場合は</p>
<pre>/apps/panel/toplevels</pre>
<p>の各設定項目を修正すれば良い。</p>
]]></content:encoded>
			<wfw:commentRss>http://naoki.sato.name/lab/archives/22/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://naoki.sato.name/lab/archives/22" />
	</item>
		<item>
		<title>Bilbo</title>
		<link>http://naoki.sato.name/lab/archives/5</link>
		<comments>http://naoki.sato.name/lab/archives/5#comments</comments>
		<pubDate>Mon, 30 Nov 2009 14:11:05 +0000</pubDate>
		<dc:creator>naoki</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://naoki.sato.name/lab/archives/5</guid>
		<description><![CDATA[Ubuntu上のBlog Editor, Bilboからテスト投稿。
Bilboのインストール自体は
sudo apt-get install bilbo

で可能。
ただし、QT(KDE)環境でSCIMで日本語を入力す [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu上のBlog Editor, Bilboからテスト投稿。</p>
<p>Bilboのインストール自体は</p>
<blockquote><p>sudo apt-get install bilbo</p>
</blockquote>
<p>で可能。</p>
<p>ただし、QT(KDE)環境でSCIMで日本語を入力するために scim-bridge-client-qt4 をインストールしておく。</p>
<blockquote><p>sudo apt-get install scim-bridge-client-qt4</p>
</blockquote>
<p>その上で、Bilboのテキストフィールドを右クリックしてIMとして scim-bridge を選択するか、もしくは事前にterminal等でscim-bridgeを起動した後にBilboを立ち上げれば、日本語を入力できる。</p>
<p>エディタの機能自体は、基本的なところは揃っていて特に悪くは無い。</p>
]]></content:encoded>
			<wfw:commentRss>http://naoki.sato.name/lab/archives/5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://naoki.sato.name/lab/archives/5" />
	</item>
	</channel>
</rss>
