<?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>ダメ出し日記 &#187; ダメ出し</title>
	<atom:link href="http://www.sfo.jp/blog/archives/category/blog/whats-wrong/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sfo.jp/blog</link>
	<description>自称・独立&#38;OSS系(?) SE、さとうふみやすの日記。OSS テクノロジ(株)に勤務。</description>
	<lastBuildDate>Fri, 23 Oct 2009 08:10:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BASH: en_US.UTF-8 で [A-Z] の glob が変?</title>
		<link>http://www.sfo.jp/blog/archives/2008/10/bash-glob.html</link>
		<comments>http://www.sfo.jp/blog/archives/2008/10/bash-glob.html#comments</comments>
		<pubDate>Thu, 16 Oct 2008 13:56:11 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[UNIX]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ダメ出し]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2008/10/bash-glob.html</guid>
		<description><![CDATA[
某 CentOS 5 環境で RPM パッケージのビルドが失敗するなぁ〜と思って調べてみた。


$ bash --version
GNU bash, version 3.2.25(1)-release (i686-r [...]]]></description>
			<content:encoded><![CDATA[<p>
某 CentOS 5 環境で RPM パッケージのビルドが失敗するなぁ〜と思って調べてみた。
</p>

<p><pre class="term"><code>$ <kbd>bash --version</kbd>
GNU bash, version 3.2.25(1)-release (i686-redhat-linux-gnu)
Copyright (C) 2005 Free Software Foundation, Inc.
$ <kbd>touch a b c X Y Z</kbd>
$ <kbd>ls</kbd>
X  Y  Z  a  b  c
$ <kbd>LC<em>ALL=C bash -c 'echo [A-Z]'</kbd>
X Y Z
$ <kbd>LC</em>ALL=ja<em>JP.UTF-8 bash -c 'echo [A-Z]'</kbd>
X Y Z
$ <kbd>LC</em>ALL=en<em>US.UTF-8 bash -c 'echo [A-Z]'</kbd>
b c X Y Z
</code></pre>
<p>
なんじゃこりゃ?
Debian の
GNU bash, version 3.2.39(1)-release (x86</em>64-pc-linux-gnu)
でも同じ挙動だった。
</p>
<p>
やはり<a href="/blog/archives/2007/05/cleanroom.html">クリーンルーム作りは重要</a>だなぁ&#8230;。
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2008/10/bash-glob.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris 10: Kerberos 5 ヘッダー &amp; ライブラリ</title>
		<link>http://www.sfo.jp/blog/archives/2008/06/solaris10-kerberos5.html</link>
		<comments>http://www.sfo.jp/blog/archives/2008/06/solaris10-kerberos5.html#comments</comments>
		<pubDate>Tue, 17 Jun 2008 02:23:57 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[Solaris]]></category>
		<category><![CDATA[ダメ出し]]></category>
		<category><![CDATA[仕事]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2008/06/solaris10-kerberos5.html</guid>
		<description><![CDATA[
Solaris 10 の
パッチ 120011-14 (SPARC), 120012-14 (i386) で、
付属の MIT Kerberos 5 にヘッダーファイル (krb5.h など) が追加された。
これで自 [...]]]></description>
			<content:encoded><![CDATA[<p>
Solaris 10 の
パッチ <a href="http://sunsolve.sun.com/search/document.do?assetkey=1-21-120011-14-1">120011-14 (SPARC)</a>, <a href="http://sunsolve.sun.com/search/document.do?assetkey=1-21-120012-14-1">120012-14 (i386)</a> で、
付属の MIT Kerberos 5 にヘッダーファイル (<code>krb5.h</code> など) が追加された。
これで自前でコンパイルしていた MIT Kerberos 5 パッケージが不要になったけど、
移行はどうやろうかなぁ…。
</p>

<p><pre class="terminal"><code>$ <kbd>uname -a</kbd>
SunOS sword 5.10 Generic<em>120012-14 i86pc i386 i86pc
$ <kbd>ls -l /usr/include/kerberos5</kbd>
計 242
-rw-r--r--   1 root     bin         2782  8月  9日 2007年 com</em>err.h
-rw-r--r--   1 root     bin       105188  8月  9日 2007年 krb5.h
-rw-r--r--   1 root     bin         1113  1月 22日 2005年 mit-sipb-copyright.h
-rw-r--r--   1 root     bin         3199  1月 22日 2005年 mit_copyright.h
</code></pre>
<p>
ところでこのパッチ、
lofs(7FS) を利用していると、
以下のようになってパッチ適用に失敗する:
</p>
<pre class="terminal"><code># /usr/local/sbin/pca -i 120012
<var>省略</var>
Checking patches that you specified for installation.
Done!
mount: Mount point /var/run/.patchSafeMode/root/home/fumiyas does not exist.
Mount operation failed - /sbin/mount -F lofs -o nosub  /home/fumiyas /var/run/.patchSafeMode/root/home/fumiyas
Could not successfully create environment for 'deferred activation patching'.
Failed (exit code 1)
</code></pre>
<p>
lofs(7FS) なファイルシステムをアウンマウントすれば回避できる<del>けど、
ゾーンを ZFS に構築しているとかなり面倒</del>。
参考:
<a href="http://www.mydatabasesupport.com/forums/solaris/346058-zonepath-svm-soft-partition.html">http://www.mydatabasesupport.com/forums/solaris/346058-zonepath-svm-soft-partition.html</a>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2008/06/solaris10-kerberos5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ソフトウェア使えばバグが出る</title>
		<link>http://www.sfo.jp/blog/archives/2007/06/softwares-have-bugs.html</link>
		<comments>http://www.sfo.jp/blog/archives/2007/06/softwares-have-bugs.html#comments</comments>
		<pubDate>Wed, 27 Jun 2007 17:40:35 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[Samba]]></category>
		<category><![CDATA[ダメ出し]]></category>
		<category><![CDATA[仕事]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2007/06/softwares-have-bugs.html</guid>
		<description><![CDATA[
…語呂が悪い。
犬もあるけば棒にあたる じゃないけど、
私がソフトウェアを使うと、ほぼ確実にバグにあたってるような気がする。
特にここ最近は酷いような気がする。
自分は多少凝った利用方法をする傾向にあると思っているが、 [...]]]></description>
			<content:encoded><![CDATA[<p>
…語呂が悪い。
<q>犬もあるけば棒にあたる</q> じゃないけど、
私がソフトウェアを使うと、ほぼ確実にバグにあたってるような気がする。
特にここ最近は酷いような気がする。
自分は多少凝った利用方法をする傾向にあると思っているが、そのせいか?
それとも他人が使わないような機能を使う傾向にあるからだろうか?
ともかく、バグのせいで仕事が進まないよ…。
</p>

<p><p>
今日のバグは
<a href=" https://bugzilla.samba.org/show_bug.cgi?id=4750"><code>libsmbclient の smbc<em>telldir</em>ctx()</code> が出鱈目なオフセット値を返す</a>、でした。
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2007/06/softwares-have-bugs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby: 外部コマンドとの IPC</title>
		<link>http://www.sfo.jp/blog/archives/2007/06/ruby-cmdipc.html</link>
		<comments>http://www.sfo.jp/blog/archives/2007/06/ruby-cmdipc.html#comments</comments>
		<pubDate>Sun, 10 Jun 2007 17:03:22 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[ダメ出し]]></category>
		<category><![CDATA[仕事]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2007/06/ruby-cmdipc.html</guid>
		<description><![CDATA[
ある Samba のバグ
を回避する方法を探っている。
Samba をアップグレードできないことが想定されるため、
クライアント側 (今回は Ruby スクリプト) で対処しなければならない。
そこで、
Ruby スク [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="https://bugzilla.samba.org/show_bug.cgi?id=4683">ある Samba のバグ</a>
を回避する方法を探っている。
Samba をアップグレードできないことが想定されるため、
クライアント側 (今回は Ruby スクリプト) で対処しなければならない。
そこで、
Ruby スクリプトから Samba の rpcclient コマンドを利用して SID の名前解決を実行すべく、
外部コマンドと <acronym title="Inter-Process Communication">IPC</acronym> するクラスを書いてみた。
</p>

<p><pre class="code"><code>#!/usr/bin/ruby -w</p>

<h2>IPC class with external command</h2>

<p>class CmdIPC
attr<em>reader :reader, :writer
def initialize(command, *args, &amp;ipcproc)
if command.class == Array
@command, @arg0 = command
else
@command = @arg0 = command
end
@args = args
@ipcproc = ipcproc
@pid = nil
start</em>command
end
def start<em>command
@reader, c</em>writer = IO.pipe
c_reader, @writer = IO.pipe</p>

<h2>Parent process returns here</h2>

<p>return if @pid = fork</p>

<h2>Child process</h2>

<p>begin
@reader.close
@writer.close
STDIN.reopen(c<em>reader)
STDOUT.reopen(c</em>writer)
c<em>reader.close
c</em>writer.close
exec([@command, @arg0], <em>@args)
rescue =&gt; e
raise "cannot execute external command: #{@command}: #{e}"
end
end
def stop<em>command
if @pid
@reader.close
@writer.close
Process.kill('TERM', @pid)
Process.waitpid(@pid)
end
@pid = nil
end
def restart</em>command
stop<em>command
start</em>command
end
def ipc(input)
@ipcproc.call(self, input)
end
end
if <strong>FILE</strong> == $0
lookupsid = CmdIPC.new('/usr/bin/rpcclient', '-U%', '-d0', '127.0.0.1') {
|sid, reader, writer|
writer.puts("lookupsids #{sid}")
next unless line = reader.gets
next unless match = line.match(/^S(?:-\d+)+\s(.</em>)\s+&#40;\d+&#41;$/)
next match[1]
}
puts lookupsid.ipc('S-1-1-0')
puts lookupsid.ipc('S-1-3-0')
puts lookupsid.ipc('S-1-3-1')
end
</code></pre>
<p>
注意: この実装では、出力をバッファリングするコマンドに対しては利用できない。
</p>
<p>
(まだ素人なので)この実装がオブジェクト指向的 (Ruby 的) に美しいかどうかはよくわからないが、
参考書を片手に数分でそれっぽいのが完成してしまった。
ちょっと感動した。
Ruby だとより直感的に書けるということかな。
ソフトウェア関係で感動したことは、過去、両手で足りる回数しか経験がないので、
貴重な体験だった。
</p>
<p>
一点気になるのは、<code>CmdIPC.new</code>
に渡しているコードブロックには <code>return</code> 文が書けないこと。
Ruby のリファレンスを読めば理由は納得できるのだが、
<code>next</code> は違和感ありすぎ。
せめて <code>break</code> ならいいのだけど、
それだと LocalJumpError 例外が発生して
<q><code>break from proc-closure</code></q> と文句を言われる。
何か間違っているのかなぁ?
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2007/06/ruby-cmdipc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FMV-BIBLE MG70W: 無線 LAN が動作しないのは初期不良?!</title>
		<link>http://www.sfo.jp/blog/archives/2007/05/fmvbible-mg70w.html</link>
		<comments>http://www.sfo.jp/blog/archives/2007/05/fmvbible-mg70w.html#comments</comments>
		<pubDate>Tue, 29 May 2007 01:27:08 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[ダメ出し]]></category>
		<category><![CDATA[仕事]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2007/05/fmvbible-mg70w.html</guid>
		<description><![CDATA[FMV-BIBLO MG70W　初期不良！？
 という記事を見つけた:


無線ＬＡＮが全く使えないのです。この機種にはワイヤレススイッチが付いていてこれをオンにすると，Bluetoothは使えるようになるのですが，無線 [...]]]></description>
			<content:encoded><![CDATA[<p><q><a href="http://pub.ne.jp/spitz/?entry_id=699628">FMV-BIBLO MG70W　初期不良！？</a>
</q> という記事を見つけた:
</p>
<blockquote>
無線ＬＡＮが全く使えないのです。この機種にはワイヤレススイッチが付いていてこれをオンにすると，Bluetoothは使えるようになるのですが，無線ＬＡＮは反応なし。専用のユーティリティ（Plugfree Network）で無線ＬＡＮを開始しようにも，開始がグレイアウトして選択不可。
あれこれ試してみましたがギブアップして，サポート（Azbyテクニカルセンター）に電話してみました。かれこれ１時間近くもサポートの指示に従い，デバイスの削除やドライバの再インストール，Plugfree Networkの再インストール，Bluetoothの停止，サービスの停止・起動を試してみましたが全く効果なし。リカバリも薦められましたがきっぱり拒否しました。だって，商品到着直後ですよ！リカバリしても同じだっちゅーねん！！
</blockquote>
<p>
うちの MG70W もこれかしら…。
確認するには<a href="http://www.sfo.jp/blog/archives/2007/05/fmv-biblo-mg70w.html">とっくに消してしまった Windows Vista</a> をリカバリーしなければ。
面倒くせぇ。
</p>
<p>
<ins>2007-10-31 追記: <a href="http://www.intellinuxwireless.org/">iwl3945</a> なら問題ない。</ins>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2007/05/fmvbible-mg70w.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FMV-BIBLO MG70W + Debian GNU/Linux 4.0 (etch)</title>
		<link>http://www.sfo.jp/blog/archives/2007/05/mg70w-debian4.html</link>
		<comments>http://www.sfo.jp/blog/archives/2007/05/mg70w-debian4.html#comments</comments>
		<pubDate>Sun, 27 May 2007 15:15:50 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ダメ出し]]></category>
		<category><![CDATA[仕事]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2007/05/mg70w-debian4.html</guid>
		<description><![CDATA[
先日の予告通り、
富士通 FMV-BIBLE MG70W の使用レポートを。
Debian GNU/Linux 4.0 (etch) amd64 版をインストールしている。


ここがイイ!

Core 2 Duo T [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.sfo.jp/blog/archives/2007/05/fmv-biblo-mg70w.html">先日の予告</a>通り、
富士通 FMV-BIBLE MG70W の使用レポートを。
Debian GNU/Linux 4.0 (etch) amd64 版をインストールしている。
</p>

<p><h4>ここがイイ!</h4>
<ul>
<li>Core 2 Duo T7100 (dual core, 1.8GHz) のパワー!
劇的な変化はないけど、きびきび動くし、マルチタスクさせてもあまり速度低下しない。
</li>
<li>メモリが最大 4GB も載る(いわゆる 32bit OS だと 3.25GB までしか認識しないらしいが)。
Panasonic, Sony も見習ってほしい。
ただ、店頭販売で 1GB (512MB x 2)、
直販でも最大 2GB (1GB x 2) のモデルしか販売しないのはやめてほしい。
また、Panasonic, Sony と同じく、直販モデルだけの優位点を設けるのもやめてほしい。
</li>
<li>ファンが付いている。付いていないほうが逆に夏場に不安なのでイイ。
音はそんなに五月蝿くないかな。
排気口は左側にあり、ちょっとした温風機みたいな感じ。
これだけの風量と温度は初体験なので、ちょっと怖い。
</li>
<li>タッチパッドは Synaptics。やっぱりエッジモーションは便利だなぁ。
</li>
<li>画面が広い。
前のノートに比べ、
サイズが 12.1 スクエアから 13.3 ワイドに、解像度が 1024&#215;768 から 1280&#215;800 に。
快適。
</li>
<li>サイズと重量は毎日持ち運ぶにはギリギリ許容範囲内かな。</li>
<li>バッテリ駆動時間は、カタログスペック 7時間だから、実運用でも 4時間くらいはもつのかな?
自分の用途には十分。
</li>
</ul>
<h4>ここがワルイ!</h4>
<ul>
<li>AC アダプタ、でかい。そんなに酷くはないけど、そこそこでかい。
重量はコード込みで 360g くらいだったかな?
見た目よりは軽く感じるが…。
サードパーティ製の小型 AC アダプタに期待したが、
MG70W に対応しているものはないみたい。残念。
</li>
<li>キーボードの音量と LCD 輝度の調整キー、外部ディスプレイ表示切替えキーが効かない。
どうすりゃいいの?
<ins>2007-10-31 追記: LCD 輝度は xbacklight(1) で調整可能。助かった。</ins>
</li>
<li>Page Up/Down キーがない。Fn キーを押しながらカーソルキー↑↓を押さねばならない。
片手で Web ブラウズするのが不便になった。
カーソルキー↑の左右のスペースが無駄。
</li>
<li>ハードディスクの容量が 120GB しかない。
160GB にしてくれよぉ…。ケチ。
TOSHIBA MK1234GSX (SATA, 5400rpm) が載っているのだが、
なんか遅いような気がする。
前のノートの Hitachi Travelstar 5K100 (ATA100, 5400rpm) のほうが速いような?
ただ、動作音はほとんど聞こえないのはイイ。
</li>
<li>タッチパッドの左右ボタンの間にある指紋センサーが邪魔。
めったに使わないものをこんな一等席的場所に設ける意味がわからない。
センスなし。
</li>
<li>LCD はツヤツヤテカテカ光沢ありのいわゆるスーパーファイン液晶。
スペック表には低反射と書いてあるが、こんなもの?
昼間の明るさでは写り込みが激しい。
誰だ、こんなの発明したやつは!
富士通、どうしてこんなの採用するんだ!
</li>
<li>PC カードは不要じゃない? どうせなら Express Card にしてほしかった。</li>
<li>各種インジケーターの LED が明るすぎるような。暗いところでは眩しいと感じる。
ほかのメーカーのノートもそうだけど、
LED はパームレスト手前よりキーボード奥のほうが見易くてよいと思う。
LID を閉じても見えるようにしたいというなら、LCD の上がよいと思う。
</li>
</ul>
<h4>ビデオ</h4>
<p>
チップは
Intel GMA X3100 (Intel GM965 内蔵)、
ドライバは sid では intel (xserver-xorg-video-intel)、
etch では vesa (xserver-xorg-video-vesa)。
etch の i810 (xserver-xorg-video-i810) は…
詳細は覚えてない (固まった?) が駄目だったような。
解像度を 1280 x 800 にするには 915resolution パッケージが必要。
<code class="file">/etc/default/915resolition</code> の設定は以下の通り:
</p>
<pre class="code"><code>MODE=58
XRESO=1280
YRESO=800
BIT=
PROG="/usr/sbin/915resolution -c 945G"
</code></pre>
<p>
<code class="file">/etc/X11/xorg.conf</code>
の設定は debconf に任せで OK。
解像度の選択で 1280 x 800 を選ぶように。
</p>
<h4>タッチパッド</h4>
<p>
チップ(?)は
Synaptics TouchPad、
ドライバは synaptics (xserver-xorg-input-synaptics)。
問題ない。
</p>
<h4>有線ネットワーク</h4>
<p>
チップは
Marvell 88E8055 (PCI-E 接続の GbE)、
ドライバは sky2。
</p>
<p>
自動的に認識されるが、
Debian の linux-image 2.6.18-4-amd64、
Linux 2.6.21.1 では一度でも落す (ifdown) と二度と使えなくなる。
Linux 2.6.21.3 にして解決。
</p>
<h4>無線ネットワーク</h4>
<p>
チップは
Intel PRO/Wireless 3945ABG、ドライバは ipw3945。
ドライバを ipw3945-source からコンパイルするほか、
firmware-ipw3945 と ipw3945d パッケージが必要。
etch の ipw3945-source 1.1.2-7 は
Linux 2.6.21.3 だとコンパイルに失敗するので、
sid の 1.2.1-1 を利用した。
</p>
<p>
うちの環境は WPA-PSK なのだが、
いまのところ何故かまともに接続できない。
接続できても、やたらとパケットが落ちて使いものにならない。
ファームウェアを最新にしても改善されず。
<ins>2007-10-31 追記: <a href="http://www.intellinuxwireless.org/">iwl3945</a> なら問題ない。</ins>
</p>
<h4>キーボード</h4>
<p>
いわゆる日本語キーボード。
86キー、いわゆる Windows キーあり、Page Up/Down キーなし。
個人的には、
キーストロークはもっと短かいほうが、
キーサイズはもっと小さいほうが好みだが、こんなもんだろう。
</p>
<p>
Fn キーと組み合わせ押す音量調節、LCD 光度調節が効かない…。
カーネルは次のように文句をたれるだけ:
</p>
<pre class="code"><code>ACPI Error (psargs-0355): [&#95;SB<em>.PCI0.GFX0.LCD</em>.BLNF] Namespace lookup failure, AE<em>NOT</em>FOUND
ACPI Error (psparse-0537): Method parse/execution failed [&#95;GPE.<em>L1C] (Node ffff81012fc59f50), AE</em>NOT<em>FOUND
ACPI Exception (evgpe-0577): AE</em>NOT<em>FOUND, while evaluating GPE method [</em>L1C] [20070126]
</code></pre>
<p>
これって BIOS がバグっているってこと?
それとも Linux の ACPI がバグっているってこと?
我慢するしかないのだろうか。
<a href="http://acpi.sourceforge.net/dsdt/index.php">DSDT</a> を書き換えないと駄目?
</p>
<p>
キーボード上部にあるマルチメディアキー(?)は xev(1) に対して無反応。
邪魔なだけ。
</p>
<h4>サスペンド/リジューム</h4>
<p>
ACPI S3, S4 は試していない。
swsusp は一度試して駄目で、その後は何も悪あがきをしていないので不明。
</p>
<p>
Linux 2.6.21.3 +
<a href="http://suspend2.net/">Suspend2</a> 2.2.10 +
hibernate スクリプトで順調に動作している。
<code class="filename">/etc/hibernate/common.conf</code>
に
<code>OnResume 99 /etc/init.d/915resolution start</code>
を書いておかないと、リジューム時に X が死ぬ。
</p>
<h4>そのほか</h4>
<p>
DVD ドライブは MATSHITA UJ-852S、ATAPI 接続。
取り外してウエイトセーバー (付属) や拡張バッテリー (オプション) に換装可能。
問題なく動作している (書き込みは未確認)。
ところで、Linux で ATAPI 機器のホットプラグ/アンプラグってどうやればいいのだろう?
ただ外すとエラーが出続けるし、ただ接続しても認識しないし。
</p>
<p>
オーディオは Intel GM965 (?) 内蔵、
ドライバ snd<em>hda</em>intel ほからしいが、
ALSA で自動認識されたみたいなのでよくわからん。
音はちゃんと鳴る。
</p>
<p>
スピーカーは前のノートよりはマシな程度かな。
</p>
<h4>未確認</h4>
<p>
以下は動作確認していない。
</p>
<ul>
<li>IEEE1394</li>
<li>PC カードスロット</li>
<li>SD/xD/MS スロット</li>
<li>モデム</li>
<li>指紋センサー</li>
</ul>
<h4>dmesg</h4>
<pre class="code"><code>Linux version 2.6.21.3-suspend2 (root@sugar) (gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #1 SMP Fri May 25 18:38:01 JST 2007
Command line: root=/dev/sda2 ro resume2=swap:/dev/sda3 vga=791
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009e000 (usable)
BIOS-e820: 000000000009e000 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 00000000cf650000 (usable)
BIOS-e820: 00000000cf650000 - 00000000cf667000 (ACPI data)
BIOS-e820: 00000000cf667000 - 00000000cf66b000 (ACPI NVS)
BIOS-e820: 00000000cf66b000 - 00000000d0000000 (reserved)
BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
BIOS-e820: 0000000100000000 - 0000000130000000 (usable)
Entering add<em>active</em>range(0, 0, 158) 0 entries of 256 used
Entering add<em>active</em>range(0, 256, 849488) 1 entries of 256 used
Entering add<em>active</em>range(0, 1048576, 1245184) 2 entries of 256 used
end<em>pfn</em>map = 1245184
DMI 2.4 present.
ACPI: RSDP 000F6270, 0024 (r2 FUJ   )
ACPI: XSDT CF65D676, 0074 (r1 FUJ    PC        1060000 FUJ       100)
ACPI: FACP CF6650BB, 00F4 (r3 FUJ    PC        1060000 FUJ       100)
ACPI: DSDT CF65D6EA, 79D1 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: FACS CF66AFC0, 0040
ACPI: HPET CF6651AF, 0038 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: MCFG CF6651E7, 003C (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: SSDT CF665223, 04EF (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: SSDT CF665712, 01CA (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: SSDT CF6658DC, 1063 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: SSDT CF66693F, 0447 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: APIC CF666D86, 0068 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: BOOT CF666DEE, 0028 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
ACPI: SLIC CF666E16, 0176 (r1 FUJ    PC        1060000 FUJ       100)
Entering add<em>active</em>range(0, 0, 158) 0 entries of 256 used
Entering add<em>active</em>range(0, 256, 849488) 1 entries of 256 used
Entering add<em>active</em>range(0, 1048576, 1245184) 2 entries of 256 used
No mptable found.
Zone PFN ranges:
DMA             0 ->     4096
DMA32        4096 ->  1048576
Normal    1048576 ->  1245184
early<em>node</em>map[3] active PFN ranges
0:        0 ->      158
0:      256 ->   849488
0:  1048576 ->  1245184
On node 0 totalpages: 1045998
DMA zone: 56 pages used for memmap
DMA zone: 903 pages reserved
DMA zone: 3039 pages, LIFO batch:0
DMA32 zone: 14280 pages used for memmap
DMA32 zone: 831112 pages, LIFO batch:31
Normal zone: 2688 pages used for memmap
Normal zone: 193920 pages, LIFO batch:31
ACPI: PM-Timer IO Port: 0x1008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi<em>id[0x00] lapic</em>id[0x00] enabled)
Processor #0 (Bootup-CPU)
ACPI: LAPIC (acpi<em>id[0x01] lapic</em>id[0x01] enabled)
Processor #1
ACPI: LAPIC<em>NMI (acpi</em>id[0x00] high edge lint[0x1])
ACPI: LAPIC<em>NMI (acpi</em>id[0x01] high edge lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi<em>base[0])
IOAPIC[0]: apic</em>id 2, address 0xfec00000, GSI 0-23
ACPI: INT<em>SRC</em>OVR (bus 0 bus<em>irq 0 global</em>irq 2 high edge)
ACPI: INT<em>SRC</em>OVR (bus 0 bus<em>irq 9 global</em>irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Setting APIC routing to physical flat
ACPI: HPET id: 0x8086a201 base: 0xfed00000
Using ACPI (MADT) for SMP configuration information
Nosave address range: 000000000009e000 - 00000000000a0000
Nosave address range: 00000000000a0000 - 00000000000e0000
Nosave address range: 00000000000e0000 - 0000000000100000
Nosave address range: 00000000cf650000 - 00000000cf667000
Nosave address range: 00000000cf667000 - 00000000cf66b000
Nosave address range: 00000000cf66b000 - 00000000d0000000
Nosave address range: 00000000d0000000 - 00000000f8000000
Nosave address range: 00000000f8000000 - 00000000fc000000
Nosave address range: 00000000fc000000 - 00000000fec00000
Nosave address range: 00000000fec00000 - 00000000fec10000
Nosave address range: 00000000fec10000 - 00000000fed00000
Nosave address range: 00000000fed00000 - 00000000fed14000
Nosave address range: 00000000fed14000 - 00000000fed1a000
Nosave address range: 00000000fed1a000 - 00000000fed1c000
Nosave address range: 00000000fed1c000 - 00000000fed90000
Nosave address range: 00000000fed90000 - 00000000fee00000
Nosave address range: 00000000fee00000 - 00000000fee01000
Nosave address range: 00000000fee01000 - 00000000ff000000
Nosave address range: 00000000ff000000 - 0000000100000000
Allocating PCI resources starting at d4000000 (gap: d0000000:28000000)
SMP: Allowing 2 CPUs, 0 hotplug CPUs
PERCPU: Allocating 33536 bytes of per cpu data
Built 1 zonelists.  Total pages: 1028071
Kernel command line: root=/dev/sda2 ro resume2=swap:/dev/sda3 vga=791
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 32768 bytes)
Extended CMOS year: 2000
time.c: Detected 1795.498 MHz processor.
Console: colour dummy device 80x25
Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Checking aperture...
PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Placing software IO TLB between 0x58bc000 - 0x98bc000
Memory: 4035124k/4980736k available (1934k kernel code, 148596k reserved, 892k data, 192k init)
Calibrating delay using timer specific routine.. 3594.68 BogoMIPS (lpj=7189372)
Security Framework v1.0.0 initialized
Capability LSM initialized
Mount-cache hash table entries: 256
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 2048K
using mwait in idle threads.
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
CPU0: Thermal monitoring enabled (TM2)
SMP alternatives: switching to UP code
ACPI: Core revision 20070126
Parsing all Control Methods:
Table [DSDT](id 0001) - 1072 Objects with 76 Devices 248 Methods 34 Regions
Parsing all Control Methods:
Table [SSDT](id 0002) - 13 Objects with 0 Devices 4 Methods 0 Regions
Parsing all Control Methods:
Table [SSDT](id 0003) - 10 Objects with 2 Devices 4 Methods 0 Regions
Parsing all Control Methods:
Table [SSDT](id 0004) - 59 Objects with 4 Devices 20 Methods 2 Regions
Parsing all Control Methods:
Table [SSDT](id 0005) - 2 Objects with 0 Devices 2 Methods 0 Regions
tbxface-0587 [02] tb<em>load</em>namespace     : ACPI Tables successfully acquired
evxfevnt-0091 [02] enable                : Transition to ACPI mode successful
Using local APIC timer interrupts.
result 12468726
Detected 12.468 MHz APIC timer.
SMP alternatives: switching to SMP code
Booting processor 1/2 APIC 0x1
Initializing CPU#1
Calibrating delay using timer specific routine.. 3591.12 BogoMIPS (lpj=7182246)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 2048K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 1
CPU1: Thermal monitoring enabled (TM2)
Intel(R) Core(TM)2 Duo CPU     T7100  @ 1.80GHz stepping 0d
Brought up 2 CPUs
migration<em>cost=13
Device driver platform lacks bus and class support for being resumed.
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: Using MMCONFIG at f8000000 - fbffffff
evgpeblk-0952 [04] ev</em>create<em>gpe</em>block   : GPE 00 to 1F [<em>GPE] 4 regs on int 0x9
evgpeblk-1049 [03] ev</em>initialize<em>gpe</em>bloc: Found 5 Wake, Enabled 3 Runtime GPEs in this block
Completing Region/Field/Buffer/Package initialization:.........................................................................................................
Initialized 36/36 Regions 0/0 Fields 48/48 Buffers 21/27 Packages (1165 nodes)
Initializing Device/Processor/Thermal objects by executing <em>INI methods:ACPI Error (tbinstal-0134): Table has invalid signature [    ], must be SSDT or PSDT [20070126]
ACPI Error (psparse-0537): Method parse/execution failed [&#95;SB</em>.<em>INI] (Node ffff81012fc4c6d0), AE</em>BAD<em>SIGNATURE
ACPI Exception (nsinit-0567): AE</em>BAD<em>SIGNATURE, during &#95;SB</em>.<em>INI.</em>INI execution [20070126]
.....
Executed 5 <em>INI methods requiring 11 _STA executions (examined 88 objects)
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
Device driver pci0000:00 lacks bus and class support for being resumed.
Boot video device is 0000:00:02.0
PCI: Transparent bridge - 0000:00:1e.0
PCI: Bus #1d (-#20) is hidden behind transparent bridge #1c (-#1d) (try 'pci=assign-busses')
Please report the result to linux-kernel to fix this permanently
ACPI: PCI Interrupt Routing Table [&#95;SB</em>.PCI0.<em>PRT]
ACPI: PCI Interrupt Routing Table [&#95;SB</em>.PCI0.RP01.<em>PRT]
ACPI: PCI Interrupt Routing Table [&#95;SB</em>.PCI0.RP03.<em>PRT]
ACPI: PCI Interrupt Routing Table [&#95;SB</em>.PCI0.PCIB._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
Device driver pnp0 lacks bus and class support for being resumed.
pnp: ACPI device : hid PNP0A08
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0200
pnp: ACPI device : hid PNP0320
pnp: ACPI device : hid PNP0C04
pnp: ACPI device : hid PNP0F13
pnp: ACPI device : hid PNP0B00
pnp: ACPI device : hid PNP0800
pnp: PnP ACPI: found 9 devices
usbcore: registered new interface driver usbfs
USB driver usbfs lacks resume support.
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
PCI-GART: No AMD northbridge found.
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
hpet0: 3 64-bit timers, 14318180 Hz
pnp: the driver 'system' has been registered
pnp: match found with the PnP device '00:01' and the driver 'system'
pnp: match found with the PnP device '00:02' and the driver 'system'
pnp: 00:02: iomem range 0xfed1c000-0xfed1ffff could not be reserved
pnp: 00:02: iomem range 0xfed14000-0xfed17fff could not be reserved
pnp: 00:02: iomem range 0xfed18000-0xfed18fff could not be reserved
pnp: 00:02: iomem range 0xfed19000-0xfed19fff could not be reserved
PCI: Ignore bogus resource 6 [0:0] of 0000:00:02.0
PCI: Bridge: 0000:00:1c.0
IO window: 2000-2fff
MEM window: fc200000-fc2fffff
PREFETCH window: d8000000-d80fffff
PCI: Bridge: 0000:00:1c.2
IO window: disabled.
MEM window: fc300000-fc3fffff
PREFETCH window: disabled.
PCI: Bus 29, cardbus bridge: 0000:1c:03.0
IO window: 00003000-000030ff
IO window: 00003400-000034ff
PREFETCH window: d4000000-d7ffffff
MEM window: dc000000-dfffffff
PCI: Bridge: 0000:00:1e.0
IO window: 3000-3fff
MEM window: fc400000-fc4fffff
PREFETCH window: d4000000-d7ffffff
ACPI: PCI Interrupt 0000:00:1c.0[A] -> GSI 16 (level, low) -> IRQ 16
PCI: Setting latency timer of device 0000:00:1c.0 to 64
ACPI: PCI Interrupt 0000:00:1c.2<pre class="brush: c; auto-links: false;"></pre></p>

<p>-> GSI 18 (level, low) -> IRQ 18
PCI: Setting latency timer of device 0000:00:1c.2 to 64
PCI: Setting latency timer of device 0000:00:1e.0 to 64
ACPI: PCI Interrupt 0000:1c:03.0[A] -> GSI 16 (level, low) -> IRQ 16
NET: Registered protocol family 2
Time: hpet clocksource has been installed.
IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
TCP established hash table entries: 131072 (order: 9, 3145728 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
checking if image is initramfs... it is
Freeing initrd memory: 4540k freed
Simple Boot Flag at 0x7b set to 0x1
audit: initializing netlink socket (disabled)
audit(1180135108.880:1): initialized
VFS: Disk quotas dquot<em>6.5.1
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered (default)
io scheduler cfq registered
PCI: Setting latency timer of device 0000:00:1c.0 to 64
assign</em>interrupt<em>mode Found MSI capability
Allocate Port Service[0000:00:1c.0:pcie00]
Allocate Port Service[0000:00:1c.0:pcie02]
Allocate Port Service[0000:00:1c.0:pcie03]
PCI: Setting latency timer of device 0000:00:1c.2 to 64
assign</em>interrupt<em>mode Found MSI capability
Allocate Port Service[0000:00:1c.2:pcie00]
Allocate Port Service[0000:00:1c.2:pcie02]
Allocate Port Service[0000:00:1c.2:pcie03]
vesafb: framebuffer at 0xe0000000, mapped to 0xffffc20004100000, using 3072k, total 7616k
vesafb: mode is 1024x768x16, linelength=2048, pages=3
vesafb: scrolling: redraw
vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
Console: switching to colour frame buffer device 128x48
fb0: VESA VGA frame buffer device
Real Time Clock Driver v1.12ac
Linux agpgart interface v0.102 (c) Dave Jones
PCI driver agpgart-sis lacks driver specific resume support.
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
pnp: the driver 'serial' has been registered
RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
Device driver lo lacks bus and class support for being resumed.
pnp: the driver 'i8042 kbd' has been registered
pnp: the driver 'i8042 aux' has been registered
pnp: match found with the PnP device '00:06' and the driver 'i8042 aux'
PNP: PS/2 Controller [PNP0f13:PS2M] at 0x0,0x0 irq 12
PNP: PS/2 controller has invalid data port 0x0; using default 0x60
PNP: PS/2 controller has invalid command port 0x0; using default 0x64
PNP: PS/2 controller doesn't have KBD irq; using default 1
i8042.c: Detected active multiplexing controller, rev 1.1.
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX0 port at 0x60,0x64 irq 12
serio: i8042 AUX1 port at 0x60,0x64 irq 12
serio: i8042 AUX2 port at 0x60,0x64 irq 12
serio: i8042 AUX3 port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
Suspend v2.2.10
Suspend2 Userspace Storage Manager support registered.
Suspend2 Basic User Interface support registered.
Suspend2 Compressor support registered.
Suspend2 Block I/O support registered.
Suspend2 Swap Allocator support registered.
Suspend2 File Allocator support registered.
Suspend2 Userspace UI support registered.
Freeing unused kernel memory: 192k freed
input: AT Translated Set 2 keyboard as /class/input/input0
ACPI: SSDT CF667DD2, 0238 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
Parsing all Control Methods:
Table [SSDT](id 00BC) - 6 Objects with 0 Devices 3 Methods 0 Regions
ACPI: SSDT CF6682D2, 046E (r1 FUJ    FJNB1D3   1060000 FUJ       100)
Parsing all Control Methods:
Table [SSDT](id 00BD) - 1 Objects with 0 Devices 1 Methods 0 Regions
Monitor-Mwait will be used to enter C-1 state
Monitor-Mwait will be used to enter C-2 state
Monitor-Mwait will be used to enter C-3 state
ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
ACPI: SSDT CF66821A, 00B8 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
Parsing all Control Methods:
Table [SSDT](id 00C1) - 4 Objects with 0 Devices 3 Methods 0 Regions
ACPI: SSDT CF668740, 0047 (r1 FUJ    FJNB1D3   1060000 FUJ       100)
Parsing all Control Methods:
Table [SSDT](id 00C2) - 1 Objects with 0 Devices 1 Methods 0 Regions
ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
ACPI: Thermal Zone [TZ00] (27 C)
ACPI: Thermal Zone [TZ01] (27 C)
USB Universal Host Controller Interface driver v3.0
ACPI: PCI Interrupt 0000:00:1a.7[B] -> GSI 23 (level, low) -> IRQ 23
PCI: Setting latency timer of device 0000:00:1a.7 to 64
ehci</em>hcd 0000:00:1a.7: EHCI Host Controller
ehci<em>hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
ehci</em>hcd 0000:00:1a.7: debug port 1
PCI: cache line size of 32 is not supported by device 0000:00:1a.7
ehci<em>hcd 0000:00:1a.7: irq 23, io mem 0xfc704800
ehci</em>hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
Device driver usbdev1.1<em>ep00 lacks bus and class support for being resumed.
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 4 ports detected
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
pnp: the driver 'ide' has been registered
SCSI subsystem initialized
libata version 2.20 loaded.
Device driver usbdev1.1</em>ep81 lacks bus and class support for being resumed.
ACPI: PCI Interrupt 0000:00:1d.7[B] -> GSI 23 (level, low) -> IRQ 23
PCI: Setting latency timer of device 0000:00:1d.7 to 64
ehci<em>hcd 0000:00:1d.7: EHCI Host Controller
ehci</em>hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
ehci<em>hcd 0000:00:1d.7: debug port 1
PCI: cache line size of 32 is not supported by device 0000:00:1d.7
ehci</em>hcd 0000:00:1d.7: irq 23, io mem 0xfc704c00
ehci<em>hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
Device driver usbdev2.1</em>ep00 lacks bus and class support for being resumed.
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
Device driver usbdev2.1<em>ep81 lacks bus and class support for being resumed.
ACPI: PCI Interrupt 0000:00:1a.0[A] -> GSI 22 (level, low) -> IRQ 22
PCI: Setting latency timer of device 0000:00:1a.0 to 64
uhci</em>hcd 0000:00:1a.0: UHCI Host Controller
uhci<em>hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
uhci</em>hcd 0000:00:1a.0: irq 22, io base 0x00001820
Device driver usbdev3.1<em>ep00 lacks bus and class support for being resumed.
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
Device driver usbdev3.1</em>ep81 lacks bus and class support for being resumed.
ACPI: PCI Interrupt 0000:00:1a.1[A] -> GSI 22 (level, low) -> IRQ 22
PCI: Setting latency timer of device 0000:00:1a.1 to 64
uhci<em>hcd 0000:00:1a.1: UHCI Host Controller
uhci</em>hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
uhci<em>hcd 0000:00:1a.1: irq 22, io base 0x00001840
Device driver usbdev4.1</em>ep00 lacks bus and class support for being resumed.
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
Device driver usbdev4.1<em>ep81 lacks bus and class support for being resumed.
ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 22 (level, low) -> IRQ 22
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci</em>hcd 0000:00:1d.0: UHCI Host Controller
uhci<em>hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
uhci</em>hcd 0000:00:1d.0: irq 22, io base 0x00001860
Device driver usbdev5.1<em>ep00 lacks bus and class support for being resumed.
usb usb5: configuration #1 chosen from 1 choice
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
Device driver usbdev5.1</em>ep81 lacks bus and class support for being resumed.
ACPI: PCI Interrupt 0000:00:1d.1[A] -> PCI driver PCI<em>IDE lacks driver specific resume support.
GSI 22 (level, low) -> IRQ 22
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci</em>hcd 0000:00:1d.1: UHCI Host Controller
uhci<em>hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
uhci</em>hcd 0000:00:1d.1: irq 22, io base 0x00001880
Device driver usbdev6.1<em>ep00 lacks bus and class support for being resumed.
usb usb6: configuration #1 chosen from 1 choice
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 2 ports detected
Device driver usbdev6.1</em>ep81 lacks bus and class support for being resumed.
ACPI: PCI Interrupt 0000:00:1d.2[A] -> GSI 22 (level, low) -> IRQ 22
PCI: Setting latency timer of device 0000:00:1d.2 to 64
uhci<em>hcd 0000:00:1d.2: UHCI Host Controller
uhci</em>hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
uhci<em>hcd 0000:00:1d.2: irq 22, io base 0x000018a0
Device driver usbdev7.1</em>ep00 lacks bus and class support for being resumed.
usb usb7: configuration #1 chosen from 1 choice
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 2 ports detected
usb 5-2: new full speed USB device using uhci<em>hcd and address 2
Device driver usbdev7.1</em>ep81 lacks bus and class support for being resumed.
ahci 0000:00:1f.2: version 2.1
ACPI: PCI Interrupt 0000:00:1f.2[A] -> GSI 20 (level, low) -> IRQ 20
Device driver usbdev5.2<em>ep00 lacks bus and class support for being resumed.
usb 5-2: configuration #1 chosen from 1 choice
Device driver usbdev5.2</em>ep81 lacks bus and class support for being resumed.
Device driver usbdev5.2<em>ep02 lacks bus and class support for being resumed.
PCI: Setting latency timer of device 0000:00:1f.2 to 64
ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode
ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part
ata1: SATA max UDMA/133 cmd 0xffffc2000003c100 ctl 0x0000000000000000 bmdma 0x0000000000000000 irq 317
ata2: SATA max UDMA/133 cmd 0xffffc2000003c180 ctl 0x0000000000000000 bmdma 0x0000000000000000 irq 317
ata3: SATA max UDMA/133 cmd 0xffffc2000003c200 ctl 0x0000000000000000 bmdma 0x0000000000000000 irq 317
scsi0 : ahci
Device driver host0 lacks bus and class support for being resumed.
ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata1.00: ATA-7: TOSHIBA MK1234GSX, AH001K, max UDMA/100
ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32)
ata1.00: configured for UDMA/100
scsi1 : ahci
Device driver host1 lacks bus and class support for being resumed.
ata2: SATA link down (SStatus 0 SControl 300)
scsi2 : ahci
Device driver host2 lacks bus and class support for being resumed.
ata3: SATA link down (SStatus 0 SControl 300)
Device driver target0:0:0 lacks bus and class support for being resumed.
scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA MK1234GS AH00 PQ: 0 ANSI: 5
ICH8M: IDE controller at PCI slot 0000:00:1f.1
ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 20 (level, low) -> IRQ 20
ICH8M: chipset revision 3
ICH8M: not 100% native mode: will probe irqs later
ide0: BM-DMA at 0x1810-0x1817, BIOS settings: hda:DMA, hdb:pio
ide1: BM-DMA at 0x1818-0x181f, BIOS settings: hdc:pio, hdd:pio
Probing IDE interface ide0...
hda: MATSHITADVD-RAM UJ-852S, ATAPI CD/DVD-ROM drive
Device driver ide0 lacks bus and class support for being resumed.
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
PCI driver PIIX</em>IDE lacks driver specific resume support.
SCSI device sda: 234441648 512-byte hdwr sectors (120034 MB)
sda: Write Protect is off
hda: ATAPI 24X DVD-ROM DVD-R-RAM CD-R/RW drive, 2048kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
sda: Mode Sense: 00 3a 00 00
SCSI device sda: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
SCSI device sda: 234441648 512-byte hdwr sectors (120034 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sda: sda1 sda2 sda3 sda4
sd 0:0:0:0: Attached scsi disk sda
device-mapper: ioctl: 4.11.0-ioctl (2006-10-12) initialised: dm-devel@redhat.com
Attempting manual resume
Replacing swsusp.
No storage allocator is currently active. Rechecking whether we can use one.
Suspend2: SwapAllocator: Signature found.
Suspend2: Resuming enabled.
Suspend2: Normal swapspace found.
SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
SGI XFS Quota Management subsystem
XFS mounting filesystem sda2
Ending clean XFS mount for filesystem: sda2
agpgart: Detected an Intel 965GM Chipset.
agpgart: Detected 7676K stolen memory.
agpgart: AGP aperture is 256M @ 0xe0000000
ACPI: PCI Interrupt 0000:04:00.0[A] -> GSI 16 (level, low) -> IRQ 16
PCI: Setting latency timer of device 0000:04:00.0 to 64
sky2 0000:04:00.0: v1.14 addr 0xfc200000 irq 16 Yukon-EC Ultra (0xb4) rev 3
Device driver eth0 lacks bus and class support for being resumed.
sky2 eth0: addr 00:17:42:3e:34:bd
input: PC Speaker as /class/input/input1
sdhci: Secure Digital Host Controller Interface driver
sdhci: Copyright(c) Pierre Ossman
sdhci: SDHCI controller found at 0000:1c:03.2 [1217:7120] (rev 2)
ACPI: PCI Interrupt 0000:1c:03.2[A] -> GSI 16 (level, low) -> IRQ 16
sdhci:slot0: Unknown controller version (2). You may experience problems.
Device driver mmc0 lacks bus and class support for being resumed.
mmc0: SDHCI at 0xfc401000 irq 16 PIO
Yenta: CardBus bridge found at 0000:1c:03.0 [10cf:143d]
Yenta O2: res at 0x94/0xD4: 00/ea
Yenta O2: enabling read prefetch/write burst
Yenta: ISA IRQ mask 0x0cb8, PCI irq 16
Socket status: 30000006
Yenta: Raising subordinate bus# of parent bus (#1c) from #1d to #20
pcmcia: parent PCI bridge I/O window: 0x3000 - 0x3fff
pcmcia: parent PCI bridge Memory window: 0xfc400000 - 0xfc4fffff
pcmcia: parent PCI bridge Memory window: 0xd4000000 - 0xd7ffffff
Device driver pcmcia<em>socket0 lacks bus and class support for being resumed.
ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 21 (level, low) -> IRQ 21
PCI: Setting latency timer of device 0000:00:1b.0 to 64
hda</em>codec: Unknown model for ALC262, trying auto-probe from BIOS...
Synaptics Touchpad, model: 1, fw: 6.2, id: 0x1a0b1, caps: 0xa04713/0x202000
input: SynPS/2 Synaptics TouchPad as /class/input/input2
si3054: cannot initialize. EXT MID = 0000
Adding 8393952k swap on /dev/sda3.  Priority:-1 extents:1 across:8393952k
loop: loaded (max 8 devices)
kjournald starting.  Commit interval 5 seconds
EXT3 FS on sda1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
Filesystem "dm-0": Disabling barriers, not supported by the underlying device
XFS mounting filesystem dm-0
Ending clean XFS mount for filesystem: dm-0
Filesystem "dm-1": Disabling barriers, not supported by the underlying device
XFS mounting filesystem dm-1
Ending clean XFS mount for filesystem: dm-1
Filesystem "dm-2": Disabling barriers, not supported by the underlying device
XFS mounting filesystem dm-2
Ending clean XFS mount for filesystem: dm-2
sky2 eth0: enabling interface
sky2 eth0: ram buffer 0K
ACPI: Battery Slot [CMB1] (battery present)
ACPI: Battery Slot [CMB2] (battery absent)
ACPI: AC Adapter [AC] (on-line)
input: Power Button (FF) as /class/input/input3
ACPI: Power Button (FF) [PWRF]
input: Lid Switch as /class/input/input4
ACPI: Lid Switch [LID]
input: Power Button (CM) as /class/input/input5
ACPI: Power Button (CM) [PWRB]
</code></pre>
<h4>lspci -vv</h4>
<pre class="code"><code>00:00.0 Host bridge: Intel Corporation Mobile Memory Controller Hub (rev 03)
Subsystem: Fujitsu Limited. Unknown device 13f2
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR-
Latency: 0
Capabilities: <access denied>
00:02.0 VGA compatible controller: Intel Corporation Mobile Integrated Graphics Controller (rev 03) (prog-if 00 [VGA])
Subsystem: Fujitsu Limited. Unknown device 13f7
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 11
Region 0: Memory at fc000000 (64-bit, non-prefetchable) [size=1M]
Region 2: Memory at e0000000 (64-bit, prefetchable) [size=256M]
Region 4: I/O ports at 1800 [size=8]
Capabilities: <access denied>
00:02.1 Display controller: Intel Corporation Mobile Integrated Graphics Controller (rev 03)
Subsystem: Fujitsu Limited. Unknown device 13f7
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Region 0: Memory at fc100000 (64-bit, non-prefetchable) [size=1M]
Capabilities: <access denied>
00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #4 (rev 03) (prog-if 00 [UHCI])
Subsystem: Fujitsu Limited. Unknown device 1414
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 22
Region 4: I/O ports at 1820 [size=32]
00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #5 (rev 03) (prog-if 00 [UHCI])
Subsystem: Fujitsu Limited. Unknown device 1414
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 22
Region 4: I/O ports at 1840 [size=32]
00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI #2 (rev 03) (prog-if 20 [EHCI])
Subsystem: Fujitsu Limited. Unknown device 1415
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin B routed to IRQ 23
Region 0: Memory at fc704800 (32-bit, non-prefetchable) [size=1K]
Capabilities: <access denied>
00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
Subsystem: Fujitsu Limited. Unknown device 142d
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 21
Region 0: Memory at fc700000 (64-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0, Cache Line Size: 64 bytes
Bus: primary=00, secondary=04, subordinate=07, sec-latency=0
I/O behind bridge: 00002000-00002fff
Memory behind bridge: fc200000-fc2fffff
Prefetchable memory behind bridge: 00000000d8000000-00000000d80fffff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
Capabilities: <access denied>
00:1c.2 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 3 (rev 03) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0, Cache Line Size: 64 bytes
Bus: primary=00, secondary=0c, subordinate=0f, sec-latency=0
Memory behind bridge: fc300000-fc3fffff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
Capabilities: <access denied>
00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #1 (rev 03) (prog-if 00 [UHCI])
Subsystem: Fujitsu Limited. Unknown device 1414
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 22
Region 4: I/O ports at 1860 [size=32]
00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #2 (rev 03) (prog-if 00 [UHCI])
Subsystem: Fujitsu Limited. Unknown device 1414
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 22
Region 4: I/O ports at 1880 [size=32]
00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #3 (rev 03) (prog-if 00 [UHCI])
Subsystem: Fujitsu Limited. Unknown device 1414
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 22
Region 4: I/O ports at 18a0 [size=32]
00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI #1 (rev 03) (prog-if 20 [EHCI])
Subsystem: Fujitsu Limited. Unknown device 1415
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin B routed to IRQ 23
Region 0: Memory at fc704c00 (32-bit, non-prefetchable) [size=1K]
Capabilities: <access denied>
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3) (prog-if 01 [Subtractive decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Bus: primary=00, secondary=1c, subordinate=20, sec-latency=32
I/O behind bridge: 00003000-00003fff
Memory behind bridge: fc400000-fc4fffff
Prefetchable memory behind bridge: 00000000d4000000-00000000d7ffffff
Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
Capabilities: <access denied>
00:1f.0 ISA bridge: Intel Corporation Mobile LPC Interface Controller (rev 03)
Subsystem: Fujitsu Limited. Unknown device 140e
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Capabilities: <access denied>
00:1f.1 IDE interface: Intel Corporation Mobile IDE Controller (rev 03) (prog-if 8a [Master SecP PriP])
Subsystem: Fujitsu Limited. Unknown device 140f
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 20
Region 0: I/O ports at 01f0 [size=8]
Region 1: I/O ports at 03f4 [size=1]
Region 2: I/O ports at 0170 [size=8]
Region 3: I/O ports at 0374 [size=1]
Region 4: I/O ports at 1810 [size=16]
00:1f.2 SATA controller: Intel Corporation Mobile SATA AHCI Controller (rev 03) (prog-if 01 [AHCI 1.0])
Subsystem: Fujitsu Limited. Unknown device 1411
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 317
Region 0: I/O ports at 1c00 [size=8]
Region 1: I/O ports at 18d4 [size=4]
Region 2: I/O ports at 18d8 [size=8]
Region 3: I/O ports at 18d0 [size=4]
Region 4: I/O ports at 18e0 [size=32]
Region 5: Memory at fc704000 (32-bit, non-prefetchable) [size=2K]
Capabilities: <access denied>
00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
Subsystem: Fujitsu Limited. Unknown device 1413
Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Interrupt: pin B routed to IRQ 11
Region 0: Memory at d8100000 (32-bit, non-prefetchable) [size=256]
Region 4: I/O ports at 1c20 [size=32]
04:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8055 PCI-E Gigabit Ethernet Controller (rev 14)
Subsystem: Fujitsu Limited. Unknown device 139a
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 316
Region 0: Memory at fc200000 (64-bit, non-prefetchable) [size=16K]
Region 2: I/O ports at 2000 [size=256]
[virtual] Expansion ROM at d8000000 [disabled] [size=128K]
Capabilities: <access denied>
0c:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG Network Connection (rev 02)
Subsystem: Intel Corporation Unknown device 1003
Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Interrupt: pin A routed to IRQ 18
Region 0: Memory at fc300000 (32-bit, non-prefetchable) [size=4K]
Capabilities: <access denied>
1c:03.0 CardBus bridge: O2 Micro, Inc. Unknown device 7136 (rev 01)
Subsystem: Fujitsu Limited. Unknown device 143d
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR- FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 168
Interrupt: pin A routed to IRQ 16
Region 0: Memory at fc402000 (32-bit, non-prefetchable) [size=4K]
Bus: primary=1c, secondary=1d, subordinate=20, sec-latency=176
Memory window 0: d4000000-d7fff000 (prefetchable)
Memory window 1: dc000000-dffff000
I/O window 0: 00003000-000030ff
I/O window 1: 00003400-000034ff
BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
16-bit legacy interface ports at 0001
1c:03.2 Generic system peripheral [0805]: O2 Micro, Inc. Integrated MMC/SD Controller (rev 02) (prog-if 01)
Subsystem: Fujitsu Limited. Unknown device 143d
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 16
Region 0: Memory at fc401000 (32-bit, non-prefetchable) [size=256]
Capabilities: <access denied>
1c:03.3 Mass storage controller: O2 Micro, Inc. Integrated MS/xD Controller (rev 01)
Subsystem: Fujitsu Limited. Unknown device 143d
Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Interrupt: pin A routed to IRQ 11
Region 0: Memory at fc400000 (32-bit, non-prefetchable) [size=4K]
Capabilities: <access denied>
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2007/05/mg70w-debian4.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>地球にやさしい?</title>
		<link>http://www.sfo.jp/blog/archives/2007/05/post-42.html</link>
		<comments>http://www.sfo.jp/blog/archives/2007/05/post-42.html#comments</comments>
		<pubDate>Fri, 04 May 2007 15:34:25 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[ダメ出し]]></category>
		<category><![CDATA[出来事]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2007/05/post-42.html</guid>
		<description><![CDATA[
マメに電気を消す、
家で食べる場合は割り箸類は受け取らない、
(住まいの地域のゴミ回収は紙ゴミを分別しなくてもいいのだが)
なるべく紙ゴミを分別して廃ダンボール類と一緒に出す、
クーラーやエアコンはなるべく使わず服装や [...]]]></description>
			<content:encoded><![CDATA[<p>
マメに電気を消す、
家で食べる場合は割り箸類は受け取らない、
(住まいの地域のゴミ回収は紙ゴミを分別しなくてもいいのだが)
なるべく紙ゴミを分別して廃ダンボール類と一緒に出す、
クーラーやエアコンはなるべく使わず服装や窓の開け閉めで調節する…
など、いわゆる
<q>地球にやさしい</q>
ちょっとしたことを色々やっているが、正直、虚しくなることがある。
周りを見れば、無駄ばかり。
一番キツイのは、何も意識をしていない輩が多いこと多いこと…。
その無駄によって生み出される結果が、巡り巡って自分に返ってくるかもしれないことを想像できないのだろうか。
</p>

<p><p>
今日、
<a href="http://ja.wikipedia.org/wiki/%E3%82%82%E3%81%A3%E3%81%9F%E3%81%84%E3%81%AA%E3%81%84#MOTTAINAI.E3.83.BB.E3.82.82.E3.81.A3.E3.81.9F.E3.81.84.E3.81.AA.E3.81.84.E9.81.8B.E5.8B.95">もったいない運動</a>
で有名な
<a href="http://ja.wikipedia.org/wiki/%E3%83%AF%E3%83%B3%E3%82%AC%E3%83%AA%E3%83%BB%E3%83%9E%E3%83%BC%E3%82%BF%E3%82%A4">ワンガリ・マータイ</a>さん
の
<a href="http://www.google.com/search?q=%E3%83%8F%E3%83%81%E3%83%89%E3%83%AA+%E3%82%82%E3%81%A3%E3%81%9F%E3%81%84%E3%81%AA%E3%81%84">ハチドリの話</a>
を聞いた。
そうか、
自分はハチドリになればいいんだ…
なんて風には 50% も思わないけど、少しは救われた気がした。
他人は他人、自分は自分。
他人を巻き込むほどマメじゃないし、そんなカリスマもないし、自分は自分で地道にやっていこう。
幸い一番近い存在のカミさんはちょっとずつ改心してくれてきたし。
</p>
<p>
ところで、
いわゆる <q>エコ</q> な物事に対して
<q>地球にやさしい</q>
とか
<q>地球のために</q>
という言葉が使われるが、どうも好きではない。
例えば <q>地球にやさしい洗剤</q> とか。
<q>害は少ないだろうが、やさしくはないだろう</q>
などと思ってしまう。
<q>地球のための○○</q>
に対しても
<q>それは自分のためだろう</q>
と。
もっとマシな言い方はないのなぁ?
人の活動のほとんどは地球に害を成しているということを自覚させるような言葉のほうが、いいんじゃないかしら。
</p>
<p>
何はともあれ、明日も自分ができることをするとしよう。
自分のために、そして自分の子供たちと、子供たちの大切な人になるかもしれない人たちのために。
来年も再来年もずっと未来にも無事に春夏秋冬がやってきて、季節のおいしいものが食べられますように。
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2007/05/post-42.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ダイニングスクエア</title>
		<link>http://www.sfo.jp/blog/archives/2007/04/dining-square.html</link>
		<comments>http://www.sfo.jp/blog/archives/2007/04/dining-square.html#comments</comments>
		<pubDate>Sat, 28 Apr 2007 11:31:47 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[ガーデニング]]></category>
		<category><![CDATA[ダメ出し]]></category>
		<category><![CDATA[出来事]]></category>
		<category><![CDATA[家族]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2007/04/dining-square.html</guid>
		<description><![CDATA[
昨日からカミさんと子供は実家に帰省中。
俺は家で、ベランダのウッドタイルのペンキ塗り。
途中で雨風が強くなり難儀したが、なんとか完了した。
いやぁ〜、子供がいないと邪魔されないので仕事がはかどるわ〜。



明日は物置 [...]]]></description>
			<content:encoded><![CDATA[<p>
昨日からカミさんと子供は実家に帰省中。
俺は家で、ベランダのウッドタイルのペンキ塗り。
途中で雨風が強くなり難儀したが、なんとか完了した。
いやぁ〜、子供がいないと邪魔されないので仕事がはかどるわ〜。
</p>

<p><p>
明日は物置の組み立てだ。
買おうと思っていたものがタイミングよく
<q>梱包材に難あり (箱破損)</q>
でオークションに出ていたので、それを購入。
市価より数千円お特だった。ラッキー。
これでベランダが片づくぞ。
</p>
<p>
さて、本題。
昼食を作るのが面倒だったので、
<a href="http://www.dining-square.com/">ダイニングスクエア</a>
というところから初めて出前をとったみた。
結果は惨敗。
ソースカツ丼、カツに旨みを感じない。
角切り豚肉の黒酢あん、肉が生臭い。
特に角切り豚肉は一度冷めたのを温め直したせいか、かなり酷い。
味は問題ないし何よりもったいないので我慢して完食…。
悲しい…。
</p>
<p>
まだ箸をつけていない餃子が残っているけど、期待しないでおこう。
メニューはゴミ箱行き決定。さようなら。
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2007/04/dining-square.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS の GUI は使いにくい</title>
		<link>http://www.sfo.jp/blog/archives/2007/04/why-macos.html</link>
		<comments>http://www.sfo.jp/blog/archives/2007/04/why-macos.html#comments</comments>
		<pubDate>Sat, 28 Apr 2007 09:38:01 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[ダメ出し]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2007/04/why-macos.html</guid>
		<description><![CDATA[
Mac OS 8 のときから感じていることだけど、
Mac OS の GUI はどうも使いにくいと感じる。
先日、久しぶりに Mac OS X の GUI を触ったが、やはり使いにくい。
自分の感性に合わないだけ? 慣 [...]]]></description>
			<content:encoded><![CDATA[<p>
Mac OS 8 のときから感じていることだけど、
Mac OS の GUI はどうも使いにくいと感じる。
先日、久しぶりに Mac OS X の GUI を触ったが、やはり使いにくい。
自分の感性に合わないだけ? 慣れの問題で使い込めば良さがわかるのかなぁ?
</p>

<p><p>
<q>Mac OS の GUI は優れている</q>
という意見をよく目にするが、どこが優れているんだろうか?
自分は
<q>見た目や動きがちょっと綺麗</q>
程度にしか感じないだけでなく、逆に粗が目につく。
例えば、先日 Mac OS X をちょっと使っただけで、
マウスボタンを押すと何かしらの動作が起こるところ
(ex.ウィンドウやペインのリサイズ)
にマウスカーソルを持っていってもカーソルの見た目が変化しないとか、
ファイルの読み込みや保存のダイアログ内のファイルの操作
(コピー、リネーム、削除など)
ができないといったことに気付いた。
(Mac OS は門外漢なので、何か見落している?)
</p>
<p>
Linux や FreeBSD をデスクトップとして使っていた人が
Mac OS X に移行したという話をちらほらと目にし、
自分も考えてみたことがある。
けど決定的な優位点を何も感じないので、次もやっぱり Debian だな。
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2007/04/why-macos.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris: PAM のデバッグログ</title>
		<link>http://www.sfo.jp/blog/archives/2007/03/solaris-pam-debuglog.html</link>
		<comments>http://www.sfo.jp/blog/archives/2007/03/solaris-pam-debuglog.html#comments</comments>
		<pubDate>Wed, 14 Mar 2007 09:57:07 +0000</pubDate>
		<dc:creator>fumiyas</dc:creator>
				<category><![CDATA[Solaris]]></category>
		<category><![CDATA[ダメ出し]]></category>
		<category><![CDATA[仕事]]></category>

		<guid isPermaLink="false">http://www.sfo.jp/blog/archives/2007/03/solaris-pam-debuglog.html</guid>
		<description><![CDATA[
/etc/syslog.conf
にログの送り先を記述する。


auth.debug              /var/log/pam.log


ログファイルを作成し、syslogd プロセスに反映させる。

# [...]]]></description>
			<content:encoded><![CDATA[<p>
<code>/etc/syslog.conf</code>
にログの送り先を記述する。
</p>

<p><pre class="code"><code>auth.debug              /var/log/pam.log
</code></pre>
<p>
ログファイルを作成し、syslogd プロセスに反映させる。
</p>
<pre class="terminal"><code># <kbd>touch /var/log/pam.log</kbd></p>

<h1><kbd>svcadm refresh system-log</kbd></h1>

<p></code></pre>
<p>
PAM のデバッグを有効にする。
</p>
<pre class="terminal"><code># <kbd>touch /etc/pam_debug</kbd>
</code></pre>
<p>
ログを読んでみたが、
PAM の実装を理解していないせいか、わけがわからん。
設定ファイル、インターフェイス、実装の触りを見る限りでは、
PAM って設計が間違っていて、できれば見ないほうがいいのではないかという予感がヒシヒシと…。
勉強したくないなぁ。
<a href="http://untroubled.org/cvm/">cvm</a>
のほうが、まだよさげ。
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sfo.jp/blog/archives/2007/03/solaris-pam-debuglog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

