<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/matsutake_memo/">
    <title>matsutake_memo @ ウィキ</title>
    <link>http://w.atwiki.jp/matsutake_memo/</link>
    <atom:link href="https://w.atwiki.jp/matsutake_memo/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>matsutake_memo @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2010-02-08T11:56:12+09:00</dc:date>
    <utime>1265597772</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/18.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/2.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/1.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/3.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/4.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/5.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/matsutake_memo/pages/6.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/17.html">
    <title>debian_command</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/17.html</link>
    <description>
      -grep -n &quot;文字列&quot; file名　でファイル内文字検索

-dpkg -i hoge.deb　でダウンロードしたdebをインストール

-odeで出力したppmをaviファイルとして出力(実行中にCtrl+wでフレーム収集)

ppm2jpg ppmをjpgへ変換
-　for i in *.ppm; do   fn=`echo $i | sed &#039;s/\(.\+\)\(\..\{1,10\}$\)/\1\.jpg/&#039;`;   echo &quot;convert -quality 100 $i ${fn}&quot;;   convert -quality 100 $i ${fn};   rm $i; done

jpgをaviで出力
-　mencoder &quot;mf://frame*.jpg&quot; -mf fps=50 -ovc lavc -lavcopts vcodec=msmpeg4v2 -o out.avi

aviをmpgに変換
-　ffmpeg -i out.avi -r 40 -b 2000k out2.mpg


-Ctrl+Alt+Backspaceでｘ再起動
-ln -s /home/matsutake3/ode-0.9/ode/src/libode.soでシンボリックリンク
今いるディレクトリのhogeをroboticsにコピーするコマンド
-scp hoge hirotoshi-a@robotics.naist.jp:public_html/progress
今いるディレクトリにroboticsにあるhogeをコピーするコマンド
-scp hirotoshi-a@robotics.naist.jp:public_html/progress/hoge .    </description>
    <dc:date>2010-02-08T11:56:12+09:00</dc:date>
    <utime>1265597772</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/18.html">
    <title>グラボ</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/18.html</link>
    <description>
      kernelはuname -aコマンドで
&gt;Linux dhrobot-13 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux
とでた

lspci -vで接続されているデバイス情報を見ると、接続されているグラボはこれみたい(lspci | grep -i nv) 
&gt;01:00.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5200] (rev a1) (prog-if 00 [VGA controller])
&gt;	Flags: bus master, 66MHz, medium devsel, latency 32, IRQ 10
&gt;	Memory at de000000 (32-bit, non-prefetchable) [size=16M]
&gt;	Memory at c0000000 (32-bit, prefetchable) [size=256M]
&gt;	Expansion ROM at dfde0000 [disabled] [size=128K]
&gt;	Capabilities: &lt;access denied&gt;
&gt;	Kernel modules: nvidiafb

*やったことリスト
NVIDIA-Linux-x86-173.14.24-pkg1.runをダウンロード
&gt;% chmod +x NVIDIA-Linux-x86-173.14.24-pkg1.run
&gt;% sudo ./NVIDIA-Linux-x86-173.14.24-pkg1.run
linuxヘッダーを更新しないとダメってググったらでてきたから、
&gt;% sudo apt-get install linux-headers-2.6.26-1-686
&gt;% sudo apt-get build-dep linux-headers-2.6.26-1-686
やっぱり、エラったので、gccのリンクをgcc-4.1にしないとダメっぽい
なので
&gt; rm /usr/bin/gcc
&gt; ln -s /usr/bin/gcc-3.1 /usr/bin/gcc
として、http://mikky3.blog40.fc2.com/?mode=m&amp;no=111を参考に
&gt;sh NVIDIA-Linux-x86-173.14.24-pkg1.run --kernel-source-path=&#039;/usr/src/kernelhogehoge --kernel-name=&#039;2.6.26.hogehoge&#039;
てな感じでドライバをインストール
自動更新しますか？って聞かれるのでＹｅｓってやったら、
startxもgdm startも使えなくなってし-まった。
startxを実行すると
&gt;(==)Log file: &quot;var/log/Xorg.0.log&quot;, Time:wed jan 13 12:05:10:2010
&gt;(==)Using config file: &quot;/etc/X11/xorg.conf&quot;
&gt;(EE)failed to load module &quot;type1&quot; (module does not exist, 0)
&gt;(II)Module &quot;ramdac&quot; already bulit-in
&gt;FATAL: could not open
&gt;&#039;/lib/modules/2.6.26-2-686/kernel/drivers/video/nvidia.ko&#039;: No such file or directory
&gt;(EE)NVIDIA(0): Failed to load the NVIDIA kernel module!
&gt;(EE)NVIDIA(0): *** Aborting ***
&gt;(EE)Screen(s) found, but none have a usable configuration&gt;&gt;
&gt;
&gt;Fatal server error:
&gt;no screens found
&gt;
&gt;waiting for x server to begin accepting connections
&gt;giving up.
&gt;xinit: Connection rest y peer(errno 104): unable to connect to X server
&gt;xinit: No such process(errno 3): server error
こんなメッセージが…

http://ubuntuforums.org/showthread.php?t=598780を参考に、
/etc/udev/rules.d/90-modprobe.rulesに
&gt;RUN+=&quot;/sbin/modprobe nvidia&quot;
を追加した。

あと、/etc/X11/xorg.confのSection &quot;Device&quot;に
&gt;Driver &quot;nvidia&quot;
を追加

もう一度、ドライバを入れ直し xorg.confの自動更新をせずに、元のファイルのままで
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder75)  Sun Nov  8 21:50:38 PST 2009

Section &quot;ServerLayout&quot;
    Identifier     &quot;Layout0&quot;
    Screen      0  &quot;Screen0&quot;
    InputDevice    &quot;Keyboard0&quot; &quot;CoreKeyboard&quot;
    InputDevice    &quot;Mouse0&quot; &quot;CorePointer&quot;
EndSection

Section &quot;Files&quot;
EndSection

Section &quot;Module&quot;
    Load           &quot;dbe&quot;
    Load           &quot;extmod&quot;
    Load           &quot;type1&quot;
    Load           &quot;freetype&quot;
    Load           &quot;glx&quot;
EndSection

Section &quot;InputDevice&quot;
    # generated from default
    Identifier     &quot;Mouse0&quot;
    Driver         &quot;mouse&quot;
    Option         &quot;Protocol&quot; &quot;auto&quot;
    Option         &quot;Device&quot; &quot;/dev/psaux&quot;
    Option         &quot;Emulate3Buttons&quot; &quot;no&quot;
    Option         &quot;ZAxisMapping&quot; &quot;4 5&quot;
EndSection

Section &quot;InputDevice&quot;
    # generated from default
    Identifier     &quot;Keyboard0&quot;
    Driver         &quot;kbd&quot;
EndSection

Section &quot;Monitor&quot;
    Identifier     &quot;Monitor0&quot;
    VendorName     &quot;Unknown&quot;
    ModelName      &quot;Unknown&quot;
    HorizSync       30.0 - 110.0
    VertRefresh     50.0 - 150.0
    Option         &quot;DPMS&quot;
EndSection

Section &quot;Device&quot;
    Identifier     &quot;Device0&quot;
    Driver         &quot;nvidia&quot;
    VendorName     &quot;NVIDIA Corporation&quot;
EndSection

Section &quot;Screen&quot;
    Identifier     &quot;Screen0&quot;
    Device         &quot;Device0&quot;
    Monitor        &quot;Monitor0&quot;
    DefaultDepth    24
    SubSection     &quot;Display&quot;
        Depth       24
    EndSubSection
EndSection

ーーーーーーーーーーーーーーーーーーー


startxを実行したら、今度は/home/matsutake3/.ICEauthorityがよみこめないとのコメントが…
しかし、nvidiaのロゴは出たのであと一歩っぽい
めんどくさいのでchmodで777にして、もう一度起動させたら、起動したー！！
グラボを認識しているようだ！！
ちょーめんどくさかった。
10時間以上は浪費した…。



**その他（結果的に必要なし）
http://ubuntuforums.org/showthread.php?t=213409を参考に
このコマンドを実行すると、startxを起動できるようになるが、再起動するとまた、使えない。
&gt;sudo dpkg-reconfigure xserver-xorg
&gt;sudo /etc/init.d/gdm restart (or &quot;kdm restart&quot; if you use KDM)

Debianで、ディストリビューションのバージョンを確認するには、/etc/debian_versionの内容を確認する。
&gt;debian:~# cat /etc/debian_version
&gt;4.0
ちなみに、カーネルのバージョンは、以下のコマンドで確認できる。
&gt;debian:/etc# uname -a
&gt;Linux debian 2.6.11-co-0.6.4 #1 Mon Jun 19 05:36:13 UTC 2006 i686 GNU/Linux    </description>
    <dc:date>2010-01-13T15:17:35+09:00</dc:date>
    <utime>1263363455</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/2.html</link>
    <description>
      **メニュー
-[[トップページ]]
-[[プラグイン紹介&gt;プラグイン]]
-[[まとめサイト作成支援ツール]]
-[[メニュー]]
-[[メニュー2]]
----
研究メモ
-[[gnuplot]]
-[[debian_command]]
-[[kate]]
-[[グラボ]]
// リンクを張るには &quot;[&quot; 2つで文字列を括ります。
// &quot;&gt;&quot; の左側に文字、右側にURLを記述するとリンクになります


//**更新履歴
//#recent(20)

&amp;link_editmenu(text=ここを編集)    </description>
    <dc:date>2010-01-03T20:07:16+09:00</dc:date>
    <utime>1262516836</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/15.html">
    <title>gnuplot</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/15.html</link>
    <description>
      *出力の仕方
-plot &quot;hogehoge.txt&quot;
-plot &quot;hoge.txt&quot;,&quot;hoge2.txt&quot;

*グラフの保存の仕方
+set terminal png
+set output &#039;hogehoge.png&#039;
+plot &quot;hogehoge.dat&quot;

*出力したpngの再生方法
-eog hogehoge.png    </description>
    <dc:date>2009-12-30T12:47:58+09:00</dc:date>
    <utime>1262144878</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/16.html">
    <title>kate</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/16.html</link>
    <description>
      設定変更
・configureでインデント等の設定ができる

ショートカットキー
Ct+Dでコメントアウト
Ct+Iでインデント
Ct+Shiftで逆方向へ動く    </description>
    <dc:date>2009-12-25T19:38:03+09:00</dc:date>
    <utime>1261737483</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/1.html</link>
    <description>
      **@wikiへようこそ
-ウィキはみんなで気軽にホームページ編集できるツールです。
-このページは自由に編集することができます。
-メールで送られてきたパスワードを用いてログインすることで、各種変更（サイト名、トップページ、メンバー管理、サイドページ、デザイン、ページ管理、等）することができます

**まずはこちらをご覧ください。
-[[@wikiの基本操作&gt;http://atwiki.jp/guide/category2.html]]
-[[用途別のオススメ機能紹介&gt;http://atwiki.jp/guide/category22.html]]
-[[@wikiの設定/管理&gt;http://atwiki.jp/guide/category6.html]]

**分からないことは？
-[[@wiki ご利用ガイド&gt;http://atwiki.jp/guide/]]
-[[よくある質問&gt;http://atwiki.jp/guide/category1.html]]
-[[無料で会員登録できるSNS内の@wiki助け合いコミュニティ&gt;http://sns.atfb.jp/view_community2.php?no=112]]
-[[@wiki更新情報&gt;http://www1.atwiki.jp/guide/pages/264.html]]
-[[@wikiへのお問合せフォーム&gt;http://atwiki.jp/helpdesk]]
等をご活用ください

**@wiki助け合いコミュニティの掲示板スレッド一覧
#atfb_bbs_list(112)

**その他お勧めサービスについて
-[[大容量１Ｇ、PHP/CGI、MySQL、FTPが使える無料ホームページは@PAGES&gt;&gt;http://atpages.jp/]]
-[[無料ブログ作成は@WORDをご利用ください&gt;&gt;http://atword.jp/]]
-[[2ch型の無料掲示板は@chsをご利用ください&gt;&gt;http://atchs.jp/]]
-[[フォーラム型の無料掲示板は@bbをご利用ください&gt;&gt;http://atbb.jp/]]
-[[お絵かき掲示板は@paintをご利用ください&gt;&gt;http://atpaint.jp/]]
-[[その他の無料掲示板は@bbsをご利用ください&gt;&gt;http://atbbs.jp/]]
-[[無料ソーシャルプロフィールサービス @flabo(アットフラボ)&gt;&gt;http://sns.atfb.jp]]

**おすすめ機能
-[[気になるニュースをチェック&gt;http://atwiki.jp/guide/17_174_ja.html]]
-[[関連するブログ一覧を表示&gt;http://atwiki.jp/guide/17_161_ja.html]]

**その他にもいろいろな機能満載！！
-[[@wikiプラグイン&gt;http://atwiki.jp/guide/category17.html]]
-[[@wiki便利ツール&gt;http://atwiki.jp/guide/category32.html]]
-[[@wiki構文&gt;http://atwiki.jp/guide/category16.html]]
-[[@wikiプラグイン一覧&gt;http://www1.atwiki.jp/guide/pages/264.html]]
-[[まとめサイト作成支援ツール&gt;http://atwiki.jp/matome/]]

**バグ・不具合を見つけたら？ 要望がある場合は？
お手数ですが、メールでお問い合わせください。
    </description>
    <dc:date>2009-11-11T15:37:40+09:00</dc:date>
    <utime>1257921460</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/3.html">
    <title>右メニュー</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/3.html</link>
    <description>
      **更新履歴
#recent(20)


&amp;link_editmenu2(text=ここを編集)
    </description>
    <dc:date>2009-11-11T15:37:40+09:00</dc:date>
    <utime>1257921460</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/4.html">
    <title>プラグイン/ニュース</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/4.html</link>
    <description>
      * ニュース
@wikiのwikiモードでは
 #news(興味のある単語)
と入力することで、あるキーワードに関連するニュース一覧を表示することができます
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_174_ja.html


-----


たとえば、#news(wiki)と入力すると以下のように表示されます。


#news(wiki)
    </description>
    <dc:date>2009-11-11T15:37:40+09:00</dc:date>
    <utime>1257921460</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/5.html">
    <title>まとめサイト作成支援ツール</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/5.html</link>
    <description>
      * まとめサイト作成支援ツールについて
@wikiには[[まとめサイト作成を支援するツール&gt;&gt;http://atwiki.jp/matome/]]があります。
また、
 #matome_list
と入力することで、注目の掲示板が一覧表示されます。

利用例）#matome_listと入力すると下記のように表示されます
#matome_list
    </description>
    <dc:date>2009-11-11T15:37:40+09:00</dc:date>
    <utime>1257921460</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/matsutake_memo/pages/6.html">
    <title>プラグイン/編集履歴</title>
    <link>https://w.atwiki.jp/matsutake_memo/pages/6.html</link>
    <description>
      * 更新履歴
@wikiのwikiモードでは
 #recent(数字)
と入力することで、wikiのページ更新履歴を表示することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_117_ja.html


-----


たとえば、#recent(20)と入力すると以下のように表示されます。


#recent(20)
    </description>
    <dc:date>2009-11-11T15:37:40+09:00</dc:date>
    <utime>1257921460</utime>
  </item>
  </rdf:RDF>
