<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:at="http://www.sixapart.com/ns/at"
    xmlns:icbm="http://postneo.com/icbm"
    xmlns:rvw="http://purl.org/NET/RVW/0.2/"
    xmlns:media="http://search.yahoo.com/mrss">
    <channel>
        <title>applejuice note</title>
        <link>http://applejuice.vox.com/library/posts/page/1/</link>
        <description></description>
        <language>en</language>
        <generator>Vox</generator>
        <lastBuildDate>Tue, 19 May 2009 03:52:41 +0900</lastBuildDate>
        <copyright>Copyright 2009</copyright>
        <docs>http://blogs.law.harvard.edu/tech/rss</docs>  
 
        <item>
            <title>VNCでの日本語入力</title>
            <link>http://applejuice.vox.com/library/post/vnc%E3%81%A7%E3%81%AE%E6%97%A5%E6%9C%AC%E8%AA%9E%E5%85%A5%E5%8A%9B.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/vnc%E3%81%A7%E3%81%AE%E6%97%A5%E6%9C%AC%E8%AA%9E%E5%85%A5%E5%8A%9B.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/vnc%E3%81%A7%E3%81%AE%E6%97%A5%E6%9C%AC%E8%AA%9E%E5%85%A5%E5%8A%9B.html?_c=feed-rss-full</guid> 
            <pubDate>Tue, 19 May 2009 03:52:41 +0900</pubDate>         
            
            <description>    &lt;p&gt;Linuxからネットを見ることが多くなってきた。&lt;/p&gt;&lt;p&gt;下記、VNC接続時の日本語入力を可能にする設定をめっけ。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;１、まず&lt;br /&gt;vi /home/()/.vnc/xstartup&lt;/p&gt;&lt;p&gt;&lt;br /&gt;２、下記を追記する。&lt;/p&gt;&lt;p&gt;#twm &amp;amp;&lt;br /&gt;&lt;span style=&quot;color: #3366ff&quot;&gt;LANG=ja_JP.UTF8&lt;br /&gt;exec scim -d &amp;amp;&lt;br /&gt;export XMODIFIERS=&amp;quot;@im=SCIM&amp;quot;&lt;br /&gt;exec gnome-session &amp;amp;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/span&gt; &lt;/p&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/vnc%E3%81%A7%E3%81%AE%E6%97%A5%E6%9C%AC%E8%AA%9E%E5%85%A5%E5%8A%9B.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee673101101686b258860d?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">vnc</category> 
            <category domain="http://applejuice.vox.com/tags/">linux</category> 
            <category domain="http://applejuice.vox.com/tags/">日本語入力</category>   
        </item> 
 
        <item>
            <title>自動実行</title>
            <link>http://applejuice.vox.com/library/post/%E8%87%AA%E5%8B%95%E5%AE%9F%E8%A1%8C.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/%E8%87%AA%E5%8B%95%E5%AE%9F%E8%A1%8C.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/%E8%87%AA%E5%8B%95%E5%AE%9F%E8%A1%8C.html?_c=feed-rss-full</guid> 
            <pubDate>Sat, 25 Apr 2009 01:36:17 +0900</pubDate>         
            
            <description>    &lt;p&gt;サービスだったら、chkconfigだけど、&lt;br /&gt;スクリプトの実行、とかであれば、下記に追記。&lt;/p&gt;&lt;p&gt;ついでに、バックグラウンド実行として、&lt;br /&gt;後ろに　＆　を付与。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;more /etc/rc.d/rc.local
&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
#&lt;br /&gt;
# This script will be executed *after* all the other init scripts.&lt;br /&gt;
# You can put your own initialization stuff in here if you don&amp;#39;t&lt;br /&gt;
# want to do the full Sys V style init stuff.
&lt;/p&gt;&lt;p&gt;
touch /var/lock/subsys/local
&lt;/p&gt;&lt;p&gt;
#redmine server start up.&lt;br /&gt;
&lt;strong&gt;&lt;span style=&quot;color: #3366ff&quot;&gt;ruby /etc/redmine-0.8.3/script/server -e production &amp;amp;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt; &lt;/p&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/%E8%87%AA%E5%8B%95%E5%AE%9F%E8%A1%8C.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee67310110167c723e860d?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">linux</category>   
        </item> 
 
        <item>
            <title>nano20090421</title>
            <link>http://applejuice.vox.com/library/post/nano20090421.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/nano20090421.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/nano20090421.html?_c=feed-rss-full</guid> 
            <pubDate>Tue, 21 Apr 2009 01:58:23 +0900</pubDate>         
            
            <description>    &lt;p&gt;ナノ嬢定期アップ。&lt;/p&gt;
    
    
    

    
    
    
&lt;div at:enclosure=&quot;asset&quot; at:xid=&quot;6a00ccff8a0fee6731011015fba219860b&quot; at:format=&quot;large&quot; at:align=&quot;center&quot;
    class=&quot;enclosure enclosure-center enclosure-large photo-enclosure&quot; 
     style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;enclosure-inner&quot;
    
        style=&quot;padding: 9px; border: 1px solid; width: px; margin: 10px auto;&quot;
    &gt;
    &lt;div class=&quot;enclosure-list&quot;&gt;
        &lt;div class=&quot;enclosure-item photo-asset last&quot;&gt;
    
            &lt;div class=&quot;enclosure-image&quot;&gt;
        
                &lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee6731011015fba219860b.html&quot;&gt;&lt;img src=&quot;http://a1.vox.com/6a00ccff8a0fee6731011015fba219860b-320pi&quot; alt=&quot;Agonokke @1&quot; title=&quot;Agonokke @1&quot; /&gt;&lt;/a&gt;
        
            &lt;/div&gt;
            &lt;div class=&quot;enclosure-meta&quot;&gt;
                &lt;div class=&quot;enclosure-asset-name&quot;&gt;&lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee6731011015fba219860b.html&quot; title=&quot;Agonokke @1&quot;&gt;Agonokke @1&lt;/a&gt;&lt;/div&gt;
            &lt;/div&gt;
    
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;!-- end enclosure --&gt;

&lt;p&gt;&lt;/p&gt;&lt;p&gt;最近あたたかくなってきて、ナノ嬢もダラダラし始めました。&lt;br /&gt;ちょっと前まで、寒くてハトみたいになってたのに。&lt;br /&gt;そんなこんなで、もーすぐGW。&lt;br /&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/p&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/nano20090421.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee6731011017bbec66860e?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">rabbit</category>    
        </item> 
 
        <item>
            <title>write</title>
            <link>http://applejuice.vox.com/library/post/write.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/write.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/write.html?_c=feed-rss-full</guid> 
            <pubDate>Tue, 03 Mar 2009 16:21:19 +0900</pubDate>         
            
            <description>    &lt;p&gt;$ write　ユーザ名&lt;br /&gt;
メッセージ&lt;/p&gt;&lt;p&gt;talk コマンドは相手の承認が必要なので、&lt;br /&gt;作業実施時などで強制的にメッセージを見せたいときに使えそう。&lt;br /&gt; &lt;/p&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/write.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee6731011017ade167860e?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">linux</category>   
        </item> 
 
        <item>
            <title>wgetのオプション</title>
            <link>http://applejuice.vox.com/library/post/wget%E3%81%AE%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%E4%B8%80%E8%A6%A7.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/wget%E3%81%AE%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%E4%B8%80%E8%A6%A7.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/wget%E3%81%AE%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%E4%B8%80%E8%A6%A7.html?_c=feed-rss-full</guid> 
            <pubDate>Wed, 21 Jan 2009 15:54:07 +0900</pubDate>         
            
            <description>    &lt;p&gt;監視ツールで重宝。&lt;br /&gt;今後もいろいろ使えそう。&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://it.kndb.jp/entry/show/id/1007&quot;&gt;wgetのオプション&lt;/a&gt;&lt;/p&gt;&lt;p&gt;今回使ったのは、&lt;br /&gt;--spider --no-dns-cache http://URL&lt;/p&gt;&lt;p&gt;上記を使えば、&lt;br /&gt;希望のURLに対して、元となるサーバがDNSで変更されても、&lt;br /&gt;毎回ルックアップしてくれる。&lt;/p&gt;&lt;p&gt;ちなみに、各オプションの詳細は下記に記載。&lt;br /&gt;&lt;pre class=&quot;code&quot;&gt;--spider　：何もダウンロードしない&lt;br /&gt;&lt;/pre&gt;&lt;pre class=&quot;code&quot;&gt;--no-dns-cache　：DNS の問い合わせ結果をキャッシュしない&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/p&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/wget%E3%81%AE%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%E4%B8%80%E8%A6%A7.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee6731010980cb31a1000b?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">linux</category> 
            <category domain="http://applejuice.vox.com/tags/">wget</category>   
        </item> 
 
        <item>
            <title>Google mini</title>
            <link>http://applejuice.vox.com/library/post/google-mini.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/google-mini.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/google-mini.html?_c=feed-rss-full</guid> 
            <pubDate>Tue, 20 Jan 2009 17:33:49 +0900</pubDate>         
            
            <description>    &lt;p&gt;サーバルームで待ちぼうけ。&lt;/p&gt;

&lt;p&gt;暇だし寒いしで、ウロウロしてたらこんなのめっけ。&lt;br /&gt;
あー、スープ飲みたい〜&lt;/p&gt;
    
    
    

    
    
    
&lt;div at:enclosure=&quot;asset&quot; at:xid=&quot;6a00ccff8a0fee6731010981201b25000c&quot; at:format=&quot;extra-large&quot; at:align=&quot;center&quot;
    class=&quot;enclosure enclosure-center enclosure-extra-large photo-enclosure&quot; 
     style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;enclosure-inner&quot;
    
        style=&quot;padding: 9px; border: 1px solid; width: px; margin: 10px auto;&quot;
    &gt;
    &lt;div class=&quot;enclosure-list&quot;&gt;
        &lt;div class=&quot;enclosure-item photo-asset last&quot;&gt;
    
            &lt;div class=&quot;enclosure-image&quot;&gt;
        
                &lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee6731010981201b25000c.html&quot;&gt;&lt;img src=&quot;http://a5.vox.com/6a00ccff8a0fee6731010981201b25000c-500pi&quot; alt=&quot;DVC00082_M.JPG&quot; title=&quot;DVC00082_M.JPG&quot; /&gt;&lt;/a&gt;
        
            &lt;/div&gt;
            &lt;div class=&quot;enclosure-meta&quot;&gt;
                &lt;div class=&quot;enclosure-asset-name&quot;&gt;&lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee6731010981201b25000c.html&quot; title=&quot;DVC00082_M.JPG&quot;&gt;DVC00082_M.JPG&lt;/a&gt;&lt;/div&gt;
            &lt;/div&gt;
    
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;!-- end enclosure --&gt;


    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/google-mini.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee67310109815fd98c000d?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">mobile</category> 
            <category domain="http://applejuice.vox.com/tags/">google</category> 
            <category domain="http://applejuice.vox.com/tags/">server</category>    
        </item> 
 
        <item>
            <title>Endeavor ST120</title>
            <link>http://applejuice.vox.com/library/post/endeavor-st120.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/endeavor-st120.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/endeavor-st120.html?_c=feed-rss-full</guid> 
            <pubDate>Tue, 16 Dec 2008 22:31:30 +0900</pubDate>         
            
            <description>    &lt;p&gt;ぐあぁ。　ブラックでた。&lt;/p&gt;
    
    
    

    
    
    
&lt;div at:enclosure=&quot;asset&quot; at:xid=&quot;6a00ccff8a0fee67310109d0f6265f000f&quot; at:format=&quot;large&quot; at:align=&quot;center&quot;
    class=&quot;enclosure enclosure-center enclosure-large photo-enclosure&quot; 
     style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;enclosure-inner&quot;
    
        style=&quot;padding: 9px; border: 1px solid; width: px; margin: 10px auto;&quot;
    &gt;
    &lt;div class=&quot;enclosure-list&quot;&gt;
        &lt;div class=&quot;enclosure-item photo-asset last&quot;&gt;
    
            &lt;div class=&quot;enclosure-image&quot;&gt;
        
                &lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee67310109d0f6265f000f.html&quot;&gt;&lt;img src=&quot;http://a7.vox.com/6a00ccff8a0fee67310109d0f6265f000f-320pi&quot; alt=&quot;Endeavor_st120_bk&quot; title=&quot;Endeavor_st120_bk&quot; /&gt;&lt;/a&gt;
        
            &lt;/div&gt;
            &lt;div class=&quot;enclosure-meta&quot;&gt;
                &lt;div class=&quot;enclosure-asset-name&quot;&gt;&lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee67310109d0f6265f000f.html&quot; title=&quot;Endeavor_st120_bk&quot;&gt;Endeavor_st120_bk&lt;/a&gt;&lt;/div&gt;
            &lt;/div&gt;
    
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;!-- end enclosure --&gt;

&lt;p&gt;&lt;/p&gt;&lt;p&gt;物欲を抑えられるかな。。&lt;br /&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/p&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/endeavor-st120.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee6731010981168f6b000c?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">epson</category> 
            <category domain="http://applejuice.vox.com/tags/">endeavor</category> 
            <category domain="http://applejuice.vox.com/tags/">st120</category>    
        </item> 
 
        <item>
            <title>Aipo4</title>
            <link>http://applejuice.vox.com/library/post/aipo4.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/aipo4.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/aipo4.html?_c=feed-rss-full</guid> 
            <pubDate>Fri, 05 Dec 2008 21:48:45 +0900</pubDate>         
            
            <description>    &lt;p&gt;オープンソースでも、グループウェア色々あるんだぁ。&lt;/p&gt;&lt;p&gt;今日試してみたのは、アイポ４&lt;/p&gt;
    
    
    

    
    
    

    
    
    
&lt;div at:enclosure=&quot;asset&quot; at:xid=&quot;6a00ccff8a0fee6731010980bdd930000b&quot; at:format=&quot;large&quot; at:align=&quot;center&quot;
    class=&quot;enclosure enclosure-center enclosure-large photo-enclosure&quot; 
     style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;enclosure-inner&quot;
    
        style=&quot;padding: 9px; border: 1px solid; width: px; margin: 10px auto;&quot;
    &gt;
    &lt;div class=&quot;enclosure-list&quot;&gt;
        &lt;div class=&quot;enclosure-item photo-asset last&quot;&gt;
    
            &lt;div class=&quot;enclosure-image&quot;&gt;
        
                &lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee6731010980bdd930000b.html&quot;&gt;&lt;img src=&quot;http://a0.vox.com/6a00ccff8a0fee6731010980bdd930000b-320pi&quot; alt=&quot;Aipo4&quot; title=&quot;Aipo4&quot; /&gt;&lt;/a&gt;
        
            &lt;/div&gt;
            &lt;div class=&quot;enclosure-meta&quot;&gt;
                &lt;div class=&quot;enclosure-asset-name&quot;&gt;&lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee6731010980bdd930000b.html&quot; title=&quot;Aipo4&quot;&gt;Aipo4&lt;/a&gt;&lt;/div&gt;
            &lt;/div&gt;
    
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;!-- end enclosure --&gt;


&lt;p&gt;&lt;br /&gt;&lt;a href=&quot;http://aipostyle.com/&quot;&gt;http://aipostyle.com/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;グループウェアでもあり、SNS機能も兼ね備えてみました、って感じかなぁ。&lt;br /&gt;Windows版を今日は試してみたけど、インストール楽だし。&lt;br /&gt;Linux版を自宅サーバに入れて、知り合いと共有、って使い方も全然アリ。&lt;br /&gt;中小規模の会社であれば、これでも十分なんじゃないかなぁ。&lt;br /&gt;スケジュール機能とか、ファイル共有もあるし。&lt;/p&gt; &lt;div&gt;Ruby同様、日本発だと、やっぱなんとなく応援したくなるるる。&lt;br /&gt;&lt;/div&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/aipo4.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee673101098152bb59000d?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">オープンソース</category> 
            <category domain="http://applejuice.vox.com/tags/">aipo</category>    
        </item> 
 
        <item>
            <title>dyson dc22</title>
            <link>http://applejuice.vox.com/library/post/dyson-dc22.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/dyson-dc22.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/dyson-dc22.html?_c=feed-rss-full</guid> 
            <pubDate>Wed, 26 Nov 2008 11:06:19 +0900</pubDate>         
            
            <description>    &lt;p&gt;ぐあああー。&lt;/p&gt;&lt;p&gt;すぎょいゴミが取れる。&lt;/p&gt;
    
    
    

    
    
    
&lt;div at:enclosure=&quot;asset&quot; at:xid=&quot;6a00ccff8a0fee67310109d0efe0f6000f&quot; at:format=&quot;large&quot; at:align=&quot;center&quot;
    class=&quot;enclosure enclosure-center enclosure-large photo-enclosure&quot; 
     style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;enclosure-inner&quot;
    
        style=&quot;padding: 9px; border: 1px solid; width: px; margin: 10px auto;&quot;
    &gt;
    &lt;div class=&quot;enclosure-list&quot;&gt;
        &lt;div class=&quot;enclosure-item photo-asset last&quot;&gt;
    
            &lt;div class=&quot;enclosure-image&quot;&gt;
        
                &lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee67310109d0efe0f6000f.html&quot;&gt;&lt;img src=&quot;http://a6.vox.com/6a00ccff8a0fee67310109d0efe0f6000f-320pi&quot; alt=&quot;Dc22&quot; title=&quot;Dc22&quot; /&gt;&lt;/a&gt;
        
            &lt;/div&gt;
            &lt;div class=&quot;enclosure-meta&quot;&gt;
                &lt;div class=&quot;enclosure-asset-name&quot;&gt;&lt;a href=&quot;http://applejuice.vox.com/library/photo/6a00ccff8a0fee67310109d0efe0f6000f.html&quot; title=&quot;Dc22&quot;&gt;Dc22&lt;/a&gt;&lt;/div&gt;
            &lt;/div&gt;
    
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;!-- end enclosure --&gt;

&lt;p&gt;&lt;/p&gt;&lt;p&gt;買って良かったー&lt;br /&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/p&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/dyson-dc22.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee6731010981104960000c?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">dyson</category> 
            <category domain="http://applejuice.vox.com/tags/">dc22</category>    
        </item> 
 
        <item>
            <title>grubについてのメモ</title>
            <link>http://applejuice.vox.com/library/post/grub%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E3%81%AE%E3%83%A1%E3%83%A2.html?_c=feed-rss-full</link>   
            <author>nobody@vox.com(Applejuice)</author>
            <comments>http://applejuice.vox.com/library/post/grub%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E3%81%AE%E3%83%A1%E3%83%A2.html?_c=feed-rss-full</comments>
            <guid isPermaLink="true">http://applejuice.vox.com/library/post/grub%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E3%81%AE%E3%83%A1%E3%83%A2.html?_c=feed-rss-full</guid> 
            <pubDate>Fri, 14 Nov 2008 21:07:32 +0900</pubDate>         
            
            <description>    &lt;p&gt;＠デュアルブート環境をいじった時、PCを起動しても、Windowsが立ち上がらず。&lt;br /&gt;そしてgrubが起動してしまう状況の時には、下記コマンドにて、Windowsの起動が可能&lt;/p&gt;&lt;p&gt;
ただし、事前にknoppix等を使い、Windowsがインストールされている&lt;br /&gt;デバイスの場所を確認。&lt;br /&gt;/dev/hda　であれば、【hd0】に。　後ろの数字は、パーティション番号。&lt;/p&gt;&lt;p&gt;（おそらく、HDDがひとつで、先にWindowsをインストールしているような&lt;br /&gt;基本的な構成であれば、下記のように、(hd0,0)で良いはず。&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #3075fb&quot;&gt;grub &amp;gt; rootnoverify (hd0,0)&lt;br /&gt;
grub &amp;gt; makeactive&lt;br /&gt;
grub &amp;gt; chainloader +1&lt;br /&gt;
grub &amp;gt; boot&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #000000&quot;&gt;とりあえずは、これでWindowsが起動するはず&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/span&gt;&lt;p&gt;＠デュアルブートにて、Linuxのインストールされていたパーティションを削除後、&lt;br /&gt;gurbの削除も忘れずに。　grub削除の手法は下記を。&lt;/p&gt;&lt;p&gt;１．Windowsの回復コンソール（OSのリカバリディスクなど）から、コマンドプロンプトを起動&lt;/p&gt;&lt;p&gt;２．X:(ユーザ名) &amp;gt; &lt;span style=&quot;color: #3075fb&quot;&gt;bootrec /fixmbr&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #000000&quot;&gt;これでgrubなどのOSセレクタが削除され、通常通り、Windowsのみが起動するように&lt;span style=&quot;color: #000000&quot;&gt;なるはず。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt; &lt;/p&gt;    &lt;p style=&quot;clear:both;&quot;&gt; 
    &lt;a href=&quot;http://applejuice.vox.com/library/post/grub%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E3%81%AE%E3%83%A1%E3%83%A2.html?_c=feed-rss-full#comments&quot;&gt;Read and post comments&lt;/a&gt;   |   
    &lt;a href=&quot;http://www.vox.com/share/6a00ccff8a0fee67310109810ba0aa000c?_c=feed-rss-full&quot;&gt;Send to a friend&lt;/a&gt; 
&lt;/p&gt;
 
            </description> 
            <category domain="http://applejuice.vox.com/tags/">grub</category>   
        </item> 
    </channel>
</rss>

