<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7510134520604525369</id><updated>2026-03-09T21:36:48.296+09:00</updated><category term="shell"/><category term="emacs"/><category term="linux"/><category term="sysadmin"/><category term="lisp"/><category term="algorithm"/><category term="javascript"/><category term="perl"/><category term="macos"/><category term="php"/><category term="windows"/><category term="standard"/><category term="apache"/><category term="css"/><category term="gcc"/><category term="movabletype"/><category term="vba"/><category term="mercurial"/><category term="java"/><category term="misc"/><category term="python"/><title type='text'>Technical Memorandum</title><subtitle type='html'>備忘録 #だいぶテキトーです (*ΦωΦ)</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>199</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-3385335044472591148</id><published>2020-04-12T17:47:00.000+09:00</published><updated>2020-04-18T13:56:57.850+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="emacs"/><category scheme="http://www.blogger.com/atom/ns#" term="lisp"/><category scheme="http://www.blogger.com/atom/ns#" term="shell"/><title type='text'>Emacs batch mode と HTML解析</title><content type='html'>&lt;div&gt;&lt;h3&gt;前提&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;たくさんあるhtmlファイルの加工、編集をしたい。&lt;/li&gt;
&lt;li&gt;環境はWindows 10.&lt;/li&gt;
&lt;li&gt;Emacsは入ってます。バージョン26.3.&lt;/li&gt;
&lt;li&gt;MSYS2も入っていてBash使用可能。&lt;/li&gt;
&lt;li&gt;しかしPython等のお手軽スクリプト言語の実行環境は無し。MicrosoftのPowershellやその他スクリプト言語には不慣れ。&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;ということでEmacsのDOM処理用関数を使うワンライナーを書くことにしました。&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div&gt;&lt;h3&gt;例題&lt;/h3&gt;&lt;p&gt;カレントディレクトリにある拡張子htmlのファイルを開いてid=&quot;my-content&quot;をもつ要素だけを抽出し、テキスト化して拡張子.txtのファイルに保存する、というもの。&lt;/p&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;for f in *.html; do
/c/Users/${user}/local/emacs-26.3-x86_64/bin/emacs --batch $f --eval=&#39;(princ (dom-texts (dom-by-id (libxml-parse-html-region (point-min) (point-max)) &quot;my-content&quot;) &quot;\n&quot;))&#39; &gt; $f.txt;
done
&lt;/pre&gt;&lt;ul&gt;&lt;li&gt;&lt;i&gt;&quot;/c/Users/${user}/local/emacs-26.3-x86_64/bin/emacs&quot;&lt;/i&gt;: Windows上のemacsコマンドのパス&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&quot;--batch&quot;&lt;/i&gt;: Emacsバッチモード。バッチモードの定義は下記参考ページに書いてある。大雑把には、普段「バッファ」や「ウィンドウ」を使用するEmacsの入出力関数（message, princなど）を標準入力や標準出力、標準エラー出力に結び付けて、非インタラクティブに処理を実行する。&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&quot;--batch&quot;&lt;/i&gt;直後の&lt;i&gt;$f&lt;/i&gt;は処理対象のhtmlファイルで、非インタラクティブなEmacsはこのファイルを開いてバッファに読み込む。&lt;/li&gt;
&lt;li&gt;&lt;i&gt;&quot;--eval&quot;&lt;/i&gt;の引数としてelispコードを渡す。この例ではhtmlを開いたバッファ全体を&lt;i&gt;&quot;libxml-parse-html-region&quot;&lt;/i&gt;関数に渡してDOM化し、次のそのDOMから&lt;i&gt;&quot;my-content&quot;&lt;/i&gt;というidをもつ要素を&lt;i&gt;&quot;dom-by-id&quot;&lt;/i&gt;関数で選び、選ばれた要素を&lt;i&gt;&quot;dom-texts&quot;&lt;/i&gt;関数に渡してテキスト部分を抽出して&lt;i&gt;&quot;princ&quot;&lt;/i&gt;で出力している。どの関数もEmacs標準のものだから外部のelispは利用していない。&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;https://www.emacswiki.org/emacs/BatchMode/&quot; title=&quot;[Home] Batch Mode&quot; target=&quot;_blank&quot;&gt;[Home] Batch Mode&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;https://www.gnu.org/software/emacs/manual/html_node/elisp/Document-Object-Model.html#Document-Object-Model&quot; title=&quot;Document Object Model - GNU Emacs Lisp Reference Manual&quot; target=&quot;_blank&quot;&gt;Document Object Model - GNU Emacs Lisp Reference Manual&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;https://www.msys2.org/&quot; target=&quot;_blanck&quot;&gt;MSYS2&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/3385335044472591148/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2020/04/emacs-batch-modehtml.html#comment-form' title='2 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/3385335044472591148'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/3385335044472591148'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2020/04/emacs-batch-modehtml.html' title='Emacs batch mode と HTML解析'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-7640035845361383178</id><published>2015-06-28T19:17:00.004+09:00</published><updated>2015-06-28T19:18:33.500+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>HPサーバーのSSACLI（Smart Storage Administrator CLI）</title><content type='html'>&lt;p&gt;RHELやCentOSにインストールしてやって、RAIDの構成や物理ドライブの情報をコマンドで調査できる（Windowsでもできると思う）&lt;/p&gt;&lt;p&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;# hpssacli

=&gt; controller all show

Smart Array P222 in Slot 4                (sn: xxxxxxxxxxxxxxxx)

=&gt; controller slot=4 logicaldrive all show

Smart Array P222 in Slot 4

   array A

      logicaldrive 1 (931.5 GB, RAID 1, OK)

=&gt; controller slot=4 physicaldrive all show

Smart Array P222 in Slot 4

   array A

      physicaldrive 2I:1:1 (port 2I:box 1:bay 1, SAS, 1 TB, OK)
      physicaldrive 2I:1:2 (port 2I:box 1:bay 2, SAS, 1 TB, OK)

=&gt; quit

&lt;/pre&gt;&lt;/p&gt;&lt;p&gt;とても便利。めったに使わないのでコマンドをすぐ忘れそう。&lt;/p&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://h20628.www2.hp.com/km-ext/content-webapp/document?docId=emr_na-c04100867&quot; title=&quot;HP ProLiant サーバー - Smart Storage Administrator (SSA) CLI での操作方法 (オンライン)&quot; target=&quot;_blank&quot;&gt;HP ProLiant サーバー - Smart Storage Administrator (SSA) CLI での操作方法 (オンライン)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/7640035845361383178/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2015/06/hpssaclismart-storage-administrator-cli.html#comment-form' title='12 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/7640035845361383178'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/7640035845361383178'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2015/06/hpssaclismart-storage-administrator-cli.html' title='HPサーバーのSSACLI（Smart Storage Administrator CLI）'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-629235467318633582</id><published>2015-05-07T01:45:00.000+09:00</published><updated>2015-05-07T01:45:06.335+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="perl"/><title type='text'>「先読み」と「後読み」の正規表現（lookahead assertion と lookbehind assertion）</title><content type='html'>&lt;p&gt;「詳説 正規表現」で「先読み」、「後読み」と呼んでいる正規表現は英語でそれぞれ lookahead assertion, lookbehind assertion、まとめて lookaround assertion と呼ぶ。&lt;/p&gt;&lt;p&gt;&lt;pre class=&quot;prettyprint lang-perl&quot;&gt;$ echo &#39;Regex example:1234567890.&#39; | perl -p -i -e &#39;s/(?&lt;=\d)(?=(\d{3})+(?!\d))/,/g&#39;
Regex example:1,234,567,890.
&lt;/pre&gt;
&lt;/p&gt;
&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://blog.livedoor.jp/dankogai/archives/50820912.html&quot; title=&quot;regexp - (?=lookahead) and (?&amp;lt;=lookbehind) assertions&quot; target=&quot;_blank&quot;&gt;regexp - (?=lookahead) and (?&amp;lt;=lookbehind) assertions&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/629235467318633582/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2015/05/lookahead-assertion-lookbehind-assertion.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/629235467318633582'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/629235467318633582'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2015/05/lookahead-assertion-lookbehind-assertion.html' title='「先読み」と「後読み」の正規表現（lookahead assertion と lookbehind assertion）'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-3535188245014315304</id><published>2015-05-06T11:39:00.000+09:00</published><updated>2015-05-06T11:39:23.585+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="windows"/><title type='text'>Windows ローカルアカウントでログオンするとき「.\ユーザー名」が使える</title><content type='html'>&lt;p&gt;ドメインに参加していた Windows 7 のPCにローカルアカウントで入りなおすとき、いつも &quot;コンピューター名\ユーザー名&quot; の形式で入力していた。コンピューター名をその都度調べて正確に入力しないといけないから面倒くさいと感じていたが、実は「.\ユーザー名」という形式にも対応しているのだった。&lt;/p&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.atmarkit.co.jp/ait/articles/0910/09/news102.html&quot; title=&quot;Tech TIPS：Windowsのようこそ画面でローカルアカウントでログオンする - ＠IT&quot; target=&quot;_blank&quot;&gt;Tech TIPS：Windowsのようこそ画面でローカルアカウントでログオンする - ＠IT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.atmarkit.co.jp/ait/articles/1406/05/news131_2.html&quot; title=&quot;Windows OS入門：第1回　ユーザーとグループアカウント (2/2) - ＠IT&quot; target=&quot;_blank&quot;&gt;Windows OS入門：第1回　ユーザーとグループアカウント (2/2) - ＠IT&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/3535188245014315304/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2015/05/windows.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/3535188245014315304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/3535188245014315304'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2015/05/windows.html' title='Windows ローカルアカウントでログオンするとき「.\ユーザー名」が使える'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-714706676314642589</id><published>2015-05-06T11:04:00.000+09:00</published><updated>2015-05-06T11:05:44.258+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="shell"/><category scheme="http://www.blogger.com/atom/ns#" term="windows"/><title type='text'>出力をクリップボードにリダイレクトする方法（clip, xclip）</title><content type='html'>&lt;p&gt;Windows で作業をしていて初めて知った（&quot;clip&quot;コマンド）。Linux/Unix の世界にも同様のコマンドがあった（&quot;xclip&quot;）。知ってよかった。&lt;/p&gt;&lt;p&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;C:\Users\foo&gt;date /T | clip
&lt;/pre&gt;&lt;/p&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;https://technet.microsoft.com/en-us/library/cc754731.aspx&quot; target=&quot;_blank&quot; title=&quot;Clip&quot;&gt;Clip&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.cyberciti.biz/faq/xclip-linux-insert-files-command-output-intoclipboard/&quot; target=&quot;_blank&quot; title=&quot;Copy Shell Prompt Output To Linux / UNIX X Clipboard Directly&quot;&gt;Copy Shell Prompt Output To Linux / UNIX X Clipboard Directly&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/714706676314642589/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2015/05/clip-xclip.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/714706676314642589'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/714706676314642589'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2015/05/clip-xclip.html' title='出力をクリップボードにリダイレクトする方法（clip, xclip）'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-919593663722628173</id><published>2015-02-22T00:24:00.001+09:00</published><updated>2015-02-22T15:00:53.528+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="windows"/><title type='text'>Fedora Live USB Creator: &quot;vesamenu.c32: not a COM32R image&quot;</title><content type='html'>&lt;p&gt;Fedora 21 Workstation の ISO と liveusb-creator をダウンロードしてWindows 8.1 を使ってブータブルUSBを作ってみたものの、次のメッセージが出て起動しなかった。（BIOS環境の場合のみ。UEFIの場合は問題なかった）&lt;/p&gt;&lt;br /&gt;
&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;vesamenu.c32: not a COM32R image
boot:&lt;/pre&gt;&lt;br /&gt;
&lt;p&gt;この症状は、USBの中にあるSYSLINUXの設定ファイル、具体的には /syslinux/syslinux.cfg をほんの少しだけ変更してあげれば治った。&lt;/p&gt;&lt;dl&gt;&lt;dt&gt;変更前の /syslinux/syslinux.cfg: &lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;default vesamenu.c32
timeout 100
...&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;変更後&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;default linux0
timeout 100
...&lt;/pre&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;br /&gt;
&lt;p&gt;&lt;a class=&quot;external&quot; href=&quot;https://ask.fedoraproject.org/en/question/59553/unable-to-boot-fedora-21-live-usb/&quot; target=&quot;_blank&quot; title=&quot;Unable to boot fedora 21 Live USB - Ask Fedora: Community Knowledge Base and Support Forum&quot;&gt;こちら&lt;/a&gt;に書いてあるように、プロンプトでTabキーを押してイメージの候補を表示する、という方法もある。が、キーボード押したくない場合には syslinux.cfg を編集すればよい。&lt;/p&gt;&lt;br /&gt;
&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;https://getfedora.org/ja/workstation/download/&quot; target=&quot;_blank&quot; title=&quot;Fedora Workstation のダウンロード&quot;&gt;Fedora Workstation のダウンロード&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;https://fedorahosted.org/liveusb-creator/&quot; target=&quot;_blank&quot; title=&quot;liveusb-creator&quot;&gt;liveusb-creator&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;br /&gt;
</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/919593663722628173/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2015/02/fedora-live-usb-creator-vesamenuc32-not.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/919593663722628173'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/919593663722628173'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2015/02/fedora-live-usb-creator-vesamenuc32-not.html' title='Fedora Live USB Creator: &quot;vesamenu.c32: not a COM32R image&quot;'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-1482756839634041097</id><published>2015-02-20T02:12:00.003+09:00</published><updated>2015-02-20T02:14:48.795+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="windows"/><title type='text'>netshコマンドを使ってWindowsファイアウォールのポートを開ける</title><content type='html'>&lt;p&gt;netshというコマンドを使えばいい。&lt;/p&gt;&lt;p&gt;たとえば TCP/80 を開けたいなら、コマンドプロンプトを管理者として開いて &lt;pre class=&quot;prettyprint lang-sh&quot;&gt;netsh advfirewall firewall add rule name=&quot;HTTP&quot; dir=in action=allow protocol=TCP localport=80&lt;/pre&gt;を実行すればOK。&lt;/p&gt;&lt;p&gt;ここで、nameオプションは「ルールの名前」と呼べばよいだろうか。文脈に応じて分かりやすい文字列を指定すればよい。&lt;/p&gt;&lt;p&gt;Windows Server 2012と2008で動作確認した。&lt;/p&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://wiki.mcneel.com/zoo/zoo5netsh&quot; title=&quot;Open TCP Port 80 in Windows Firewall using NETSH [McNeel Wiki]&quot; target=&quot;_blank&quot;&gt;Open TCP Port 80 in Windows Firewall using NETSH [McNeel Wiki]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.atmarkit.co.jp/ait/articles/1002/05/news097.html&quot; title=&quot;Windows TIPS：netshコマンドでTCP/IPのパラメータを設定する - ＠IT&quot; target=&quot;_blank&quot;&gt;Windows TIPS：netshコマンドでTCP/IPのパラメータを設定する - ＠IT&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/1482756839634041097/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2015/02/netshwindows.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1482756839634041097'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1482756839634041097'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2015/02/netshwindows.html' title='netshコマンドを使ってWindowsファイアウォールのポートを開ける'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-4693132534573702980</id><published>2014-04-20T15:30:00.002+09:00</published><updated>2014-04-27T14:35:43.084+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="emacs"/><title type='text'>Emacs 24.3, DDSKK-15.1, Mac OS 10.6.8</title><content type='html'>&lt;div&gt;&lt;h3&gt;前提&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;Mac OS X 10.6.8&lt;/li&gt;
&lt;li&gt;Emacs 24.3 (emacsformacosx.com で配布されている)&lt;/li&gt;
&lt;li&gt;make が使えること&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div&gt;&lt;h3&gt;作業&lt;/h3&gt;&lt;dl&gt;&lt;dt&gt;ddskk-15.1 をダウンロードして展開&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;$ cd ~/work
$ wget ftp://ftp.ring.gr.jp/pub/elisp/skk/maintrunk/ddskk-15.1.tar.gz
$ wget ftp://ftp.ring.gr.jp/pub/elisp/skk/maintrunk/ddskk-15.1.tar.gz.md5
$ md5 ddskk-15.1.tar.gz
MD5 (ddskk-15.1.tar.gz) = c33f335994b93ea91783bf5b42663f07
$ cat ddskk-15.1.tar.gz.md5 
MD5 (ddskk-15.1.tar.gz) = c33f335994b93ea91783bf5b42663f07
$ tar xzf ddskk-15.1.tar.gz&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;ddskk-15.1/SKK-CFG の内容を変更&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-lisp&quot;&gt;;; (setq SKK_DATADIR &quot;/Applications/Emacs.app/Contents/Resources/etc/skk&quot;)
;; (setq SKK_INFODIR &quot;/Applications/Emacs.app/Contents/Resources/info&quot;)
;; (setq SKK_LISPDIR &quot;/Applications/Emacs.app/Contents/Resources/site-lisp/skk&quot;)
;; (setq SKK_SET_JISYO t)&lt;/pre&gt;&lt;/dd&gt;     &lt;dd&gt;上記4行を有効にする。&lt;/dd&gt;     &lt;dd&gt;&lt;pre class=&quot;prettyprint lang-lisp&quot;&gt;(setq SKK_DATADIR &quot;/Applications/Emacs.app/Contents/Resources/etc/skk&quot;)
(setq SKK_INFODIR &quot;/Applications/Emacs.app/Contents/Resources/info&quot;)
(setq SKK_LISPDIR &quot;/Applications/Emacs.app/Contents/Resources/site-lisp/skk&quot;)
(setq SKK_SET_JISYO t)&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;念のため make what-where でインストールパスを確認&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;$ cd ddskk-15.1
$ make what-where
emacs -batch -q -no-site-file -l SKK-MK -f SKK-MK-what-where
Loading subst-ksc...
Loading subst-gb2312...
Loading subst-big5...
Loading subst-jis...
Loading /Users/th/work/ddskk-15.1/SKK-CFG...

SKK modules:
  skk-viper, skk-emacs, ccc, cdb, context-skk, queue-m, skk-abbrev, skk-act, skk-annotation, skk-auto, skk-autoloads, skk-azik, skk-cdb, skk-comp, skk-cursor, skk-cus, skk-dcomp, skk-develop, skk-gadget, skk-hint, skk-inline, skk-isearch, skk-jisx0201, skk-jisyo-edit-mode, skk-kakasi, skk-kcode, skk-leim, skk-look, skk-macs, skk-num, skk-server-completion, skk-server, skk-show-mode, skk-sticky, skk-tankan, skk-tut, skk-vars, skk-version, skk, skk-study
  -&gt; /Applications/Emacs.app/Contents/Resources/site-lisp/skk

SKK infos:
  skk.info
  -&gt; /Applications/Emacs.app/Contents/Resources/info

SKK tutorials:
  SKK.tut, SKK.tut.E, NICOLA-SKK.tut, skk.xpm
  -&gt; /Applications/Emacs.app/Contents/Resources/etc/skk
&lt;/pre&gt;&lt;/dd&gt;     &lt;dd&gt;パスが「/Applications/Emacs.app/Contents」になっているので問題なし。&lt;/dd&gt;
&lt;dt&gt;make install&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;$ sudo make install Emacs=/Applications/Emacs.app/Contents/MacOS/Emacs&lt;/pre&gt;&lt;/dd&gt;
&lt;dd&gt;ここで、Emacsの実行形式ファイルのパスを指定するのを忘れないように（忘れると、あとでEmacsからddskkを実行したときにエラーが出ます）。&lt;/dd&gt;   &lt;/dl&gt;&lt;p&gt;以上。&lt;/p&gt;&lt;/div&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://emacsformacosx.com/&quot; title=&quot;GNU Emacs For Mac OS X&quot; target=&quot;_blank&quot;&gt;GNU Emacs For Mac OS X&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://openlab.ring.gr.jp/skk/index-j.html&quot; title=&quot;SKK Openlab - トップ&quot; target=&quot;_blank&quot;&gt;SKK Openlab - トップ&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/4693132534573702980/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2014/04/emacs-243-ddskk-151-mac-os-1068.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/4693132534573702980'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/4693132534573702980'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2014/04/emacs-243-ddskk-151-mac-os-1068.html' title='Emacs 24.3, DDSKK-15.1, Mac OS 10.6.8'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-878309970003528060</id><published>2013-12-08T23:24:00.001+09:00</published><updated>2013-12-08T23:24:32.692+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="shell"/><title type='text'>bash の wait コマンド（shell builtin command）</title><content type='html'>&lt;p&gt;今日まで存在を知らなかった。。。バックグラウンドプロセスが終了するまで待ち合わせするコマンド。&lt;/p&gt;&lt;p&gt;惰性で順次実行してたシェルスクリプトを手軽に並行実行できるようになって効率上がるかも。&lt;/p&gt;&lt;dl&gt;  &lt;dt&gt;環境&lt;/dt&gt;
  &lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;$ bash --version
GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0)
Copyright (C) 2007 Free Software Foundation, Inc.
$ help wait
wait: wait [n]
    Wait for the specified process and report its termination status.  If
    N is not given, all currently active child processes are waited for,
    and the return code is zero.  N may be a process ID or a job
    specification; if a job spec is given, all processes in the job&#39;s
    pipeline are waited for.
&lt;/pre&gt;&lt;/dd&gt;
  &lt;dt&gt;例1) wait なし&lt;/dt&gt;
  &lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;$ cat test.sh 
#!/bin/bash
date
(sleep 1; echo &#39;sleep 1&#39;) &amp;
(sleep 2; echo &#39;sleep 2&#39;) &amp;
(sleep 3; echo &#39;sleep 3&#39;) &amp;
date

$ ./test.sh 
2013年 12月 8日 日曜日 23時03分12秒 JST
2013年 12月 8日 日曜日 23時03分12秒 JST
sleep 1
sleep 2
sleep 3
&lt;/pre&gt;&lt;/dd&gt;
  &lt;dd&gt;バックグラウンドプロセスの終了を待たずに2つ目の date コマンドが実行されて日時を出力。その後1、2、3秒ごとに echo の結果が。&lt;/dd&gt;
  &lt;dt&gt;例2) wait あり&lt;/dt&gt;
  &lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;$ cat test.sh 
#!/bin/bash
date
(sleep 1; echo &#39;sleep 1&#39;) &amp;
(sleep 2; echo &#39;sleep 2&#39;) &amp;
(sleep 3; echo &#39;sleep 3&#39;) &amp;
wait
date
$ ./test.sh 
2013年 12月 8日 日曜日 23時06分58秒 JST
sleep 1
sleep 2
sleep 3
2013年 12月 8日 日曜日 23時07分01秒 JST
&lt;/pre&gt;&lt;/dd&gt;
  &lt;dd&gt;全バックグラウンドプロセスの実行＆終了を待ってから2つ目の date コマンドが実行された。合計3秒待ったから3秒後の日時がプリントされた。&lt;/dd&gt;
&lt;/dl&gt;&lt;div&gt;  &lt;h3&gt;参考&lt;/h3&gt;  &lt;ul&gt;    &lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://itpro.nikkeibp.co.jp/article/COLUMN/20110224/357662/&quot; title=&quot;今日の腕試し！ - 引数なしでwaitコマンドを実行するとどうなる？：ITpro&quot; target=&quot;_blank&quot;&gt;今日の腕試し！ - 引数なしでwaitコマンドを実行するとどうなる？：ITpro&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://linux.just4fun.biz/%E9%80%86%E5%BC%95%E3%81%8D%E3%82%B7%E3%82%A7%E3%83%AB%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%97%E3%83%88/%E8%A4%87%E6%95%B0%E3%81%AE%E3%83%97%E3%83%AD%E3%82%BB%E3%82%B9%E3%81%8C%E7%B5%82%E4%BA%86%E3%81%99%E3%82%8B%E3%81%BE%E3%81%A7%E5%BE%85%E6%A9%9F%E3%81%99%E3%82%8B%E3%83%BBwait.html&quot; title=&quot;逆引きシェルスクリプト/複数のプロセスが終了するまで待機する・wait - Linuxと過ごす&quot; target=&quot;_blank&quot;&gt;逆引きシェルスクリプト/複数のプロセスが終了するまで待機する・wait - Linuxと過ごす&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/878309970003528060/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/12/bash-wait-shell-builtin-command.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/878309970003528060'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/878309970003528060'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/12/bash-wait-shell-builtin-command.html' title='bash の wait コマンド（shell builtin command）'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-1822159206985866473</id><published>2013-11-05T02:07:00.000+09:00</published><updated>2013-11-05T02:08:41.327+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>FUSEの例（archivemount で tgz をマウントしてみる）</title><content type='html'>&lt;p&gt;とあるAndroidスマホの中を見ていたら、ディレクトリの一部が「fuse」という謎のファイルシステムを使っていることに気がついた。初耳だったので調べてみると、LUKSをもっと手軽にしたようなものらしい（FUSEとLUKSを比較している記事がいくつかみつかった）。&lt;/p&gt;&lt;p&gt;ネットで紹介されているFUSEの利用例はたいていリモートホストのファイルをセキュアにSSHFSとしてマウントするものなので、ここでは矮小というか卑近というか要するにあまり役に立たない例としてローカルホストにあるアーカイブ（tgz）を読み書きする例にした。&lt;/p&gt;&lt;br /&gt;
&lt;dl&gt;&lt;dt&gt;1. 環境&lt;/dt&gt;
&lt;dd&gt;Fedora release 19 (Schrödinger’s Cat)&lt;/dd&gt;   &lt;dd&gt;ただし、「archivemount」というパッケージを yum でインストールした。&lt;/dd&gt;
&lt;dt&gt;2. rootで、何でもいいからテキストファイルをつくってアーカイブ化（ファイル名：/root/work.tgz）&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;[root@localhost ~]# cd
[root@localhost ~]# mkdir work; for i in foo bar baz; do echo $i &gt; work/$i.txt; done
[root@localhost ~]# ll work; cat work/*
total 12
-rw-r--r--. 1 root root 4 Nov  5 01:43 bar.txt
-rw-r--r--. 1 root root 4 Nov  5 01:43 baz.txt
-rw-r--r--. 1 root root 4 Nov  5 01:43 foo.txt
bar
baz
foo
[root@localhost ~]# tar cvzf work.tgz work/
work/
work/bar.txt
work/baz.txt
work/foo.txt
&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;3. 共有用として /var/local/ の下に fuse というディレクトリを作り、/etc/fstab にマウントの設定を追加。&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;[root@localhost ~]# mkdir -p /var/local/fuse
[root@localhost ~]# cp /etc/fstab{,.orig}
[root@localhost ~]# echo &#39;/root/work.tgz /var/local/fuse fuse.archivemount defaults,allow_other&#39; &gt;&gt; /etc/fstab&lt;/pre&gt;&lt;/dd&gt;   &lt;dd&gt;この fstab のポイントは、ファイルシステムのタイプを「fuse.archivemount」にすることとオプションに「allow_other」を加えることの二点。&lt;/dd&gt;
&lt;dt&gt;4. fstab の設定にしたがって mount してみる（&#39;-a&#39;オプション）&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;[root@localhost ~]# mount -a&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;5. マウントされた内容を df と ls で確認&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;[root@localhost ~]# df
Filesystem               1K-blocks    Used  Available Use% Mounted on
/dev/mapper/fedora-root   28244124 9058868   17743876  34% /
devtmpfs                   1015516       0    1015516   0% /dev
tmpfs                      1022324     148    1022176   1% /dev/shm
tmpfs                      1022324     964    1021360   1% /run
tmpfs                      1022324       0    1022324   0% /sys/fs/cgroup
tmpfs                      1022324    2664    1019660   1% /tmp
/dev/sda1                   487652   83857     378195  19% /boot
archivemount            1048576000       0 1048576000   0% /var/local/fuse
[root@localhost ~]# ll /var/local/fuse/work
total 0
-rw-r--r--. 0 root root 4 Nov  5 01:43 bar.txt
-rw-r--r--. 0 root root 4 Nov  5 01:43 baz.txt
-rw-r--r--. 0 root root 4 Nov  5 01:43 foo.txt&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;6. 一般ユーザー（ここでは u1 とする）で、マウントしたディレクトリに読み書きしてみる。&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;[u1@localhost ~]$ id
uid=1001(u1) gid=1001(u1) groups=1001(u1) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
[u1@localhost ~]$ cd /var/local/fuse/work
[u1@localhost work]$ echo hoge &gt; hoge.txt
[u1@localhost work]$ ll
total 0
-rw-r--r--. 0 root root 4 Nov  5 01:43 bar.txt
-rw-r--r--. 0 root root 4 Nov  5 01:43 baz.txt
-rw-r--r--. 0 root root 4 Nov  5 01:43 foo.txt
-rw-r--r--. 0 root root 5 Nov  5 01:44 hoge.txt
[u1@localhost work]$ vi bar.txt    # ファイル内の文字列「bar」を「bar2」と書き換えるだけ
[u1@localhost work]$ ll
total 0
-rw-r--r--. 0 root root 5 Nov  5 01:44 bar.txt
-rw-r--r--. 0 root root 4 Nov  5 01:43 baz.txt
-rw-r--r--. 0 root root 4 Nov  5 01:43 foo.txt
-rw-r--r--. 0 root root 5 Nov  5 01:44 hoge.txt
[u1@localhost work]$ rm baz.txt    # ファイルを削除
[u1@localhost work]$ ll
total 0
-rw-r--r--. 0 root root 5 Nov  5 01:44 bar.txt
-rw-r--r--. 0 root root 4 Nov  5 01:43 foo.txt
-rw-r--r--. 0 root root 5 Nov  5 01:44 hoge.txt&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;7. アンマウントして、アーカイブの中身が変更されているか確認&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;[root@localhost ~]# umount /var/local/fuse
umount: /var/local/fuse: target is busy.
        (In some cases useful info about processes that use
         the device is found by lsof(8) or fuser(1))
[u1@localhost work]$ cd    # u1 の存在で umount が失敗したので cd する
[root@localhost ~]# umount /var/local/fuse
[root@localhost ~]# mv work{,.orig}    # もともとのアーカイブをリネーム
[root@localhost ~]# tar xf work.tgz    # fuse.archivemount 経由で変更したアーカイブを展開
[root@localhost ~]# diff -uwbr work.orig work    # diff をとってみる
diff -uwbr work.orig/bar.txt work/bar.txt
--- work.orig/bar.txt 2013-11-05 01:43:39.096153269 +0900
+++ work/bar.txt 2013-11-05 01:44:38.000000000 +0900
@@ -1 +1 @@
-bar
+bar2
Only in work.orig: baz.txt
Only in work: hoge.txt
&lt;/pre&gt;&lt;/dd&gt; &lt;dd&gt;差分は期待どおり。これでOK.&lt;/dd&gt; &lt;/dl&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.usupi.org/sysad/230.html&quot; title=&quot;FUSE でいろんなファイルシステムをマウントする - いますぐ実践! Linuxシステム管理 / Vol.230&quot; target=&quot;_blank&quot;&gt;FUSE でいろんなファイルシステムをマウントする - いますぐ実践! Linuxシステム管理 / Vol.230&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://sourceforge.net/apps/mediawiki/fuse/index.php?title=FAQ&quot; title=&quot;SourceForge.net: FAQ - fuse&quot; target=&quot;_blank&quot;&gt;SourceForge.net: FAQ - fuse&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/1822159206985866473/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/11/fuse-archivemount.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1822159206985866473'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1822159206985866473'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/11/fuse-archivemount.html' title='FUSEの例（archivemount で tgz をマウントしてみる）'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-1585499609884415558</id><published>2013-10-26T12:26:00.003+09:00</published><updated>2013-10-26T12:26:42.945+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="shell"/><title type='text'>bashでタブの出力：echo と printf</title><content type='html'>&lt;dl&gt;  &lt;dt&gt;echo&lt;/dt&gt;
  &lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;$ echo -e &quot;foo\tbar&quot;
foo bar
&lt;/pre&gt;&lt;/dd&gt;
  &lt;dt&gt;printf&lt;/dt&gt;
  &lt;dd&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;$ printf &quot;foo\tbar\n&quot;
foo bar
&lt;/pre&gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;p&gt;ただし、環境によっては echo の &#39;-e&#39; オプションが使えないとの意見あり（シェルの仕様に依存する）。&lt;/p&gt;&lt;div&gt;  &lt;h3&gt;参考&lt;/h3&gt;  &lt;ul&gt;    &lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://unix.stackexchange.com/questions/65803/why-is-printf-better-than-echo&quot; title=&quot;text processing - Why is printf better than echo? - Unix &amp; Linux Stack Exchange&quot; target=&quot;_blank&quot;&gt;text processing - Why is printf better than echo? - Unix &amp; Linux Stack Exchange&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.in-ulm.de/~mascheck/various/echo+printf/&quot; title=&quot;echo and printf behaviour&quot; target=&quot;_blank&quot;&gt;echo and printf behaviour&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/1585499609884415558/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/10/bashecho-printf.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1585499609884415558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1585499609884415558'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/10/bashecho-printf.html' title='bashでタブの出力：echo と printf'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-1422864045652469330</id><published>2013-09-25T23:20:00.001+09:00</published><updated>2013-10-14T13:29:16.554+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="emacs"/><category scheme="http://www.blogger.com/atom/ns#" term="windows"/><title type='text'>Windows + Emacs + Growl</title><content type='html'>&lt;p&gt;パパッと条件反射的にやる定型作業の履歴チェックに使える。&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://d.hatena.ne.jp/yuto_sasaki/20120412/1334218356&quot; title=&quot;howm の todo とかを growl で通知(手動登録)@Windows - めもめも&quot; target=&quot;_blank&quot;&gt;howm の todo とかを growl で通知(手動登録)@Windows - めもめも&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://qiita.com/rohinomiya/items/5e485d6700eac256af9f&quot; title=&quot;Windows で Growl 通知を行う - Qiita [キータ]&quot; target=&quot;_blank&quot;&gt;Windows で Growl 通知を行う - Qiita [キータ]&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/1422864045652469330/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/09/windows-emacs-growl.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1422864045652469330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1422864045652469330'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/09/windows-emacs-growl.html' title='Windows + Emacs + Growl'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-6105152505337758922</id><published>2013-09-21T07:16:00.000+09:00</published><updated>2013-09-21T07:16:00.486+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="shell"/><title type='text'>cURLの &#39;-w&#39; オプション</title><content type='html'>&lt;p&gt;&lt;a class=&quot;external&quot; href=&quot;http://d.hatena.ne.jp/akuwano/20120503/1335994486&quot;&gt;curlでボトルネック調査をする - 256bitの殺人メニュー&lt;/a&gt;&lt;/p&gt;&lt;p&gt;とても便利。&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/6105152505337758922/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/09/curl-w.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/6105152505337758922'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/6105152505337758922'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/09/curl-w.html' title='cURLの &#39;-w&#39; オプション'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-8037828303311263824</id><published>2013-09-19T06:21:00.000+09:00</published><updated>2014-04-20T15:52:10.976+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="shell"/><title type='text'>bash の brace expansion で数列生成できる</title><content type='html'>&lt;p&gt;中括弧（brace）を使ったイディオム、たとえば &lt;pre class=&quot;prettyprint&quot;&gt;$ cp /foo/bar{,.orig}&lt;/pre&gt;はよく使っていた。でも数列まで扱えるとは知らなかった。&lt;/p&gt;&lt;p&gt;数列を作るときは seq コマンドを使って &lt;pre class=&quot;prettyprint&quot;&gt;seq 1 10&lt;/pre&gt;などと打っていた。&lt;/p&gt;&lt;p&gt;これも間違いではないが、中括弧を使えば seq 無しで、すなわち、&lt;pre class=&quot;prettyprint&quot;&gt;{1..10}&lt;/pre&gt;と書けるのだった。おそらく中括弧を使ったほうがスッキリきれいに書ける場面が多いだろう（キーボードを打つ回数だけ比較したらあまり変わらないかもしれないが。。。）&lt;/p&gt;&lt;p&gt;この brace expansion で数列を作る具体例のほとんどは「&lt;a class=&quot;external&quot; href=&quot;http://kazmax.zpp.jp/linux/bash_tips.html&quot; title=&quot;LinuxTips 連番ファイルをコマンド一発で作成する&quot; target=&quot;_blank&quot;&gt;LinuxTips 連番ファイルをコマンド一発で作成する&lt;/a&gt;」に書いてあるのであまり付記することは無い。強いて挙げるならば、増分（increment）も指定できる点。以下がその例。&lt;pre class=&quot;prettyprint&quot;&gt;$ echo {1..10..2}
1 3 5 7 9
$ echo {z..a..5}
z u p k f a&lt;/pre&gt;&lt;/p&gt;&lt;br /&gt;
&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;a class=&quot;external&quot; href=&quot;https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html&quot; title=&quot;Bash Reference Manual: Brace Expansion&quot; target=&quot;_blank&quot;&gt;Bash Reference Manual: Brace Expansion&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/8037828303311263824/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/09/bash-brace-expansion.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/8037828303311263824'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/8037828303311263824'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/09/bash-brace-expansion.html' title='bash の brace expansion で数列生成できる'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-1943496266547499323</id><published>2013-09-16T23:41:00.001+09:00</published><updated>2013-09-16T23:47:17.929+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="macos"/><title type='text'>Linuxの仮想コンソール切り換え（VMware Fusionにて）</title><content type='html'>&lt;p&gt;MacBook に VMware Fusion を入れ、ゲストOSに Linux を入れ、コンソールで作業している場合の話。&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;別のコンソールに切り替えようとすると大抵は間違ったキーを押してしまう。たとえばただ単に B や C の文字がぽつんと表示されておしまいである。これがMacでなければ Alt + F1(F2,...,F6) キーで間違うことはないのだが。。。&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;この環境で打つべき正しい組み合わせは次のとおり：&lt;/p&gt;&lt;p&gt;&lt;strong&gt;optionキー + fnキー + F1(F2,...,F6)&lt;/strong&gt;&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;失敗の原因は「option」でなく「command」を押してしまうこと。Macのoptionキーにはよく見ると &quot;alt&quot; という文字も書いてあるので見れば分かるというのに。。。とはいうもののキーボードの表面などは滅多に見ないのだからしかたがない。&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/1943496266547499323/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/09/linuxvmware-fusion.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1943496266547499323'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1943496266547499323'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/09/linuxvmware-fusion.html' title='Linuxの仮想コンソール切り換え（VMware Fusionにて）'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-1758139080395071505</id><published>2013-02-09T18:27:00.000+09:00</published><updated>2013-02-09T18:51:17.521+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="windows"/><title type='text'>外付HDDにWindows 7でチェックディスク（chkdsk） --&gt; メモリ消費すごい</title><content type='html'>&lt;p&gt;システムドライブ以外のドライブに対して「不良セクターのスキャンと回復」を有効にしてエラーチェックつまり &quot;chkdsk /r&quot; コマンドを実行するとメモリを大量に消費する。&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&lt;a class=&quot;external&quot; target=&quot;_blank&quot; href=&quot;http://blogs.msdn.com/b/e7/archive/2009/08/10/what-we-do-with-a-bug-report.aspx&quot; title=&quot;What we do with a bug report? - Engineering Windows 7 - Site Home - MSDN Blogs&quot;&gt;What we do with a bug report? - Engineering Windows 7 - Site Home - MSDN Blogs&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;うちの Windows7（RAM 12GB搭載）でも確かに再現。2TBの外付けハードディスクドライブに対して chkdsk /r を実行し、しばらくするとメモリ使用量が8GB近く、システム全体で10GBほどに上がった。ここまで上がるとある意味楽しい。そして一晩寝かすと途中で強制終了されていた。&lt;/p&gt;&lt;p&gt;しかたないのでVMに入っている Windows Server 2008 で同じ chkdsk /r を試してみたら、問題は起こらなかった。&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/1758139080395071505/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/02/hddwindows-7chkdsk.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1758139080395071505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/1758139080395071505'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/02/hddwindows-7chkdsk.html' title='外付HDDにWindows 7でチェックディスク（chkdsk） --&gt; メモリ消費すごい'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-5688940733274002839</id><published>2013-01-27T01:52:00.000+09:00</published><updated>2013-01-27T01:53:59.950+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="shell"/><title type='text'>psコマンドの結果をgrepするときのtips</title><content type='html'>&lt;p&gt;こじんまりした話題だが、、、grepコマンド自身がプロセスのリストに表示されるのがわずらわしいとき、いちいち「grep -v grep」を通してた。これは正規表現を使って簡潔にできる。&lt;/p&gt;&lt;dl&gt;&lt;dt&gt;tips適用前&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-pl&quot;&gt;ps aux | grep mingetty | grep -v grep&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;適用例1&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-pl&quot;&gt;ps aux | grep mingett[y]&lt;/pre&gt;&lt;/dd&gt;
&lt;dt&gt;適用例2&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;prettyprint lang-pl&quot;&gt;ps aux | grep [m]ingetty&lt;/pre&gt;&lt;/dd&gt; &lt;/dl&gt;&lt;p&gt;昔から脈々と受け継がれているらしい。2006年にはブログに書いている人がいるから。&lt;/p&gt;&lt;p&gt;ちなみに自分の場合は「プロのためのLinuxシステム・10年効く技術」という本で知りました。&lt;/p&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.shell-fu.org/lister.php?id=22&quot; title=&quot;[shell-fu:view-22]$&quot; target=&quot;_blank&quot;&gt;[shell-fu:view-22]$&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://at-aka.blogspot.jp/2006/07/linux.html?showComment=1154129100000#c115412914533457527&quot; title=&quot;clmemo@aka: Linux でプロセスごとのメモリー使用量を調べる&quot; target=&quot;_blank&quot;&gt;clmemo@aka: Linux でプロセスごとのメモリー使用量を調べる&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/5688940733274002839/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2013/01/psgreptips.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/5688940733274002839'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/5688940733274002839'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2013/01/psgreptips.html' title='psコマンドの結果をgrepするときのtips'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-2614369141912807543</id><published>2012-12-02T23:07:00.001+09:00</published><updated>2013-01-27T18:36:37.597+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>「日経BP ITPro 今日の腕試し！」地味だけど面白い</title><content type='html'>&lt;p&gt;ブログ停滞した。軽く書く。&lt;/p&gt;&lt;p&gt;大変失礼なこと書きますが、あか抜けない印象の ITPro のページ。「&lt;a class=&quot;external&quot; href=&quot;http://itpro.nikkeibp.co.jp/bn/mokuji.jsp?OFFSET=0&amp;MAXCNT=20&amp;TOP_ID=200034&quot; title=&quot;今日の腕試し！&quot; target=&quot;_blank&quot;&gt;今日の腕試し！&lt;/a&gt;」&lt;/p&gt;&lt;p&gt;なぜこのページにたどり着いたのかよく覚えてないけど、とにかくプラットフォーム、レイヤーを問わず雑多な問題が提供されていて面白かった。なぜか微笑がこぼれた。週に一回くらい見てもよいんじゃなかろうか。&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/2614369141912807543/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2012/12/bp-itpro.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/2614369141912807543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/2614369141912807543'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2012/12/bp-itpro.html' title='「日経BP ITPro 今日の腕試し！」地味だけど面白い'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-8341499587500334344</id><published>2012-10-03T05:20:00.002+09:00</published><updated>2012-12-02T23:12:46.018+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>ファイバチャネルHDDの40ピンコネクタ</title><content type='html'>&lt;p&gt;拾い読みしてまとめた。&lt;/p&gt;&lt;ul&gt;&lt;li&gt;FC-HDDの、40ピンのコネクタはSCA-2に分類される。SCA-40と呼ばれることもある&lt;/li&gt;
&lt;li&gt;同じSCA-2で、80ピンのものもある。こちらはSCSI-HDDに用いられる&lt;/li&gt;
&lt;li&gt;SCA（Single Connector Attachment）の目的の一つは、従来複数に分かれていたSCSIケーブルを1本にすること&lt;/li&gt;
&lt;li&gt;分かれていた、信号（68ピン）と電源等をまとめた結果 SCSI-HDD は80ピンになった。FC-HDDのほうは40ピンで済んだ&lt;/li&gt;
&lt;li&gt;ケーブルが1本にまとまった結果、サーバーやSANストレージのディスク交換作業がちょっと楽になった（ちょっとした気遣いが大事ですよねー。USBコネクタの上下非対称問題とか考えると）&lt;/li&gt;
&lt;/ul&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://en.wikipedia.org/wiki/Fibre_Channel_electrical_interface#40-pin_.22SCA-2.22_disk_connector&quot; title=&quot;Fibre Channel electrical interface - Wikipedia, the free encyclopedia&quot; target=&quot;_blank&quot;&gt;Fibre Channel electrical interface - Wikipedia, the free encyclopedia&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://enterprisezine.jp/iti/detail/112?p=2&quot; title=&quot;ストレージの主役、ディスク装置～ディスクの構造とその発展（2）（2/4）：企業のIT・経営・ビジネスをつなぐ情報サイト EnterpriseZine (EZ)&quot; target=&quot;_blank&quot;&gt;ストレージの主役、ディスク装置～ディスクの構造とその発展（2）（2/4）：企業のIT・経営・ビジネスをつなぐ情報サイト EnterpriseZine (EZ)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.atmarkit.co.jp/fpc/cableconnecter/indexpage/&quot; title=&quot;ケーブル＆コネクタ図鑑&quot; target=&quot;_blank&quot;&gt;ケーブル＆コネクタ図鑑&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://en.wikipedia.org/wiki/Single_Connector_Attachment&quot; title=&quot;Single Connector Attachment - Wikipedia, the free encyclopedia&quot; target=&quot;_blank&quot;&gt;Single Connector Attachment - Wikipedia, the free encyclopedia&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/8341499587500334344/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2012/10/hdd40.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/8341499587500334344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/8341499587500334344'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2012/10/hdd40.html' title='ファイバチャネルHDDの40ピンコネクタ'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-3345202638646007285</id><published>2012-09-14T01:13:00.003+09:00</published><updated>2012-09-14T01:17:29.077+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>CentOS-6 で使われているTCPの輻輳制御アルゴリズム</title><content type='html'>&lt;p&gt;/procを使って読み書きができた。CentOS-6（kernel 2.6.32-279）では&quot;CUBIC&quot;がデフォルトになっている模様。&lt;/p&gt;&lt;pre class=&quot;prettyprint&quot; lang=&quot;sh&quot;&gt;# cat /proc/sys/net/ipv4/tcp_congestion_control
cubic&lt;/pre&gt;&lt;p&gt;選択肢としては、&quot;reno&quot;もある。&lt;/p&gt;&lt;pre class=&quot;prettyprint&quot; lang=&quot;sh&quot;&gt;# cat /proc/sys/net/ipv4/tcp_available_congestion_control
cubic reno&lt;/pre&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.net.c.dendai.ac.jp/~yutaro/&quot; title=&quot;TCP各バージョンの輻輳制御の観察&quot; target=&quot;_blank&quot;&gt;TCP各バージョンの輻輳制御の観察&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://linuxjm.sourceforge.jp/html/LDP_man-pages/man7/tcp.7.html&quot; title=&quot;Man page of TCP&quot; target=&quot;_blank&quot;&gt;Man page of TCP&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://en.wikipedia.org/wiki/CUBIC_TCP&quot; title=&quot;CUBIC TCP - Wikipedia, the free encyclopedia&quot; target=&quot;_blank&quot;&gt;CUBIC TCP - Wikipedia, the free encyclopedia&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/3345202638646007285/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2012/09/tcp.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/3345202638646007285'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/3345202638646007285'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2012/09/tcp.html' title='CentOS-6 で使われているTCPの輻輳制御アルゴリズム'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-8154158080262042780</id><published>2012-09-10T21:45:00.001+09:00</published><updated>2012-09-10T21:47:22.164+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="shell"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>CentOS-5 起動スクリプトのスケルトン</title><content type='html'>&lt;p&gt;&#39;/etc/init.d/&#39; に入れるスクリプトを書こうと思ったとき、そのひな形（スケルトン、テンプレート、等々）を求めてついインターネットを検索してしまう。しかし、無駄にエネルギーを消費する必要はない。システムにあらかじめインストールされているのだった。&lt;/p&gt;&lt;p&gt;そのパスは、&#39;/usr/share/doc/initfiles-x.y.z/sysvinitfiles&#39; のあたり（CentOS の場合）。&lt;/p&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://lists.centos.org/pipermail/centos/2008-February/052140.html&quot;&gt;[CentOS] How can I write Startup script...&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/8154158080262042780/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2012/09/centos-5.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/8154158080262042780'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/8154158080262042780'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2012/09/centos-5.html' title='CentOS-5 起動スクリプトのスケルトン'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-2046923608057919874</id><published>2012-09-06T02:36:00.002+09:00</published><updated>2012-09-06T02:41:28.660+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>Linuxで使用されているNICドライバを調べる方法2つ</title><content type='html'>&lt;dl&gt;&lt;dt&gt;いつもの方法&lt;/dt&gt;
&lt;dd&gt;まずdmesgコマンドの出力から&#39;eth0&#39;や&#39;eth1&#39;を探してモジュール名を特定。モジュール名を引数としてmodinfoコマンドを実行し、バージョン等の詳細情報を知る。&lt;/dd&gt;
&lt;dt&gt;今日知った方法&lt;/dt&gt;
&lt;dd&gt;ethtoolコマンドの&#39;-i&#39;オプションを使う（参考URLのコメント欄に書いてあった）。modinfoみたいにたくさんの情報は出力されないが、バージョンとバスは把握できる。&lt;/dd&gt;
&lt;/dl&gt;&lt;br /&gt;
&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.cyberciti.biz/faq/linux-find-out-what-driver-my-ethernet-card-is-using/&quot; title=&quot;Linux: Find out Ethernet card driver name&quot; target=&quot;_blank&quot;&gt;Linux: Find out Ethernet card driver name&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/2046923608057919874/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2012/09/linuxnic2.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/2046923608057919874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/2046923608057919874'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2012/09/linuxnic2.html' title='Linuxで使用されているNICドライバを調べる方法2つ'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-7965380448042224114</id><published>2012-09-03T01:28:00.002+09:00</published><updated>2012-09-16T16:07:48.945+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>RedHat, CentOS のリリースバージョンを知る方法</title><content type='html'>&lt;p&gt;すごく簡単なことだけどなかなか覚えられないのでメモっておく。&lt;/p&gt;&lt;pre class=&quot;prettyprint lang-sh&quot;&gt;例）cat /etc/redhat-release 
Red Hat Enterprise Linux Client release 5.2 (Tikanga)&lt;/pre&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://jp.redhat.com/promo/doc/faq/2.html#22&quot; title=&quot;レッドハット | FAQ&quot; target=&quot;_blank&quot;&gt;レッドハット | FAQ&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/7965380448042224114/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2012/09/redhat-centos.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/7965380448042224114'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/7965380448042224114'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2012/09/redhat-centos.html' title='RedHat, CentOS のリリースバージョンを知る方法'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-7279146678443841079</id><published>2012-08-30T00:56:00.002+09:00</published><updated>2012-09-03T01:30:13.924+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>yumdownloader：依存関係を満たすRPMをまとめてダウンロード</title><content type='html'>&lt;p&gt;&lt;q&gt;yumdownloader&lt;/q&gt;というコマンドがあるんですね（特に&#39;--resolve&#39;オプションが便利）。&lt;/p&gt;&lt;p&gt;LinuxをインストールしたけどNICのドライバがあたらない。yum も使えない、といった状況で役に立つかな？ つまり、ドライバのビルドに必要なパッケージを別の計算機でダウンロードして、USBメモリで移す、とか。。。&lt;/p&gt;&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.ibm.com/developerworks/jp/linux/library/l-lpic1-v3-102-5/#N10524&quot; title=&quot;Linux の 101 試験対策: RPM および YUM によるパッケージ管理&quot; target=&quot;_blank&quot;&gt;Linux の 101 試験対策: RPM および YUM によるパッケージ管理&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/7279146678443841079/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2012/08/yumdownloaderrpm.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/7279146678443841079'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/7279146678443841079'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2012/08/yumdownloaderrpm.html' title='yumdownloader：依存関係を満たすRPMをまとめてダウンロード'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7510134520604525369.post-6157103781328370427</id><published>2012-08-19T23:26:00.002+09:00</published><updated>2013-01-27T02:00:26.571+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="windows"/><title type='text'>「8.3形式」とは</title><content type='html'>&lt;p&gt;はじめて知った用語。今日Sambaをいじっているときに遭遇した。ファイル名に関する規則。&lt;/p&gt;&lt;br /&gt;
&lt;div&gt;&lt;h3&gt;参考&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://ppona.com/gpl/iodata/usl-5p/USLSRC100/daemon/samba/040924/samba-2.2.11-ja-1.0/docs/ja/htmldocs/using_samba/ch05_04.html&quot; title=&quot;[Chapter 5] 5.4 ファイル名の短縮 (Name Mangling) と大文字小文字&quot; target=&quot;_blank&quot;&gt;[Chapter 5] 5.4 ファイル名の短縮 (Name Mangling) と大文字小文字&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=&quot;http://www.atmarkit.co.jp/icd/root/85/5785285.html&quot; title=&quot;Insider&#39;s Computer Dictionary [8.3形式] － ＠IT&quot; target=&quot;_blank&quot;&gt;Insider&#39;s Computer Dictionary [8.3形式] － ＠IT&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dminor11th.blogspot.com/feeds/6157103781328370427/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://dminor11th.blogspot.com/2012/08/83.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/6157103781328370427'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7510134520604525369/posts/default/6157103781328370427'/><link rel='alternate' type='text/html' href='http://dminor11th.blogspot.com/2012/08/83.html' title='「8.3形式」とは'/><author><name>th</name><uri>http://www.blogger.com/profile/09046805884679530924</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjduhhIjyhMNe5G6VIcZv6sRYxIAFQaUOYDdJtdmh8hk7lJ-j9-hMeYzFoeBXRlmaxodtBRByaP1-A6Kdnma-i1ny3kvhDC1Lx5kML9rkfvWYVVt9qJ3DidlizYnjJPMgs/s220/2006020514_1348241567.jpg'/></author><thr:total>0</thr:total></entry></feed>