<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>コンピュータを学ぶ (UNIX Linux関連)</title>
      <link>http://momox.net/blog/</link>
      <description>ウィンドウズに飽き足らない。もっと深い部分をしっかりと学びたい。そんな思いが根底にあります。いっしょに学びましょう。</description>
      <language>ja</language>
      <copyright>Copyright 2008</copyright>
      <lastBuildDate>Tue, 01 Jul 2008 05:14:22 +0900</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/?v=3.2-ja-2</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

            <item>
         <title>Mysql DB　を別マシンのMysqlに移行するには？</title>
         <description>新しいマシンにmysqlとmysql-serverを導入する。

　　yum -y install mysql   

でmysqlのクライアントを導入する。

　　yum -y install mysql-server

でmysqlのサーバを導入する。

元マシンからDBのファイルをコピーする

   scp  -r /var/lib/mysql    192.168.1.200:~

　　サブフォルダを含めてコピー

とかすると新しいマシン（192.168.1.200）にコピーしてくれます。
他にもｆｔｐで転送しても問題ありません。
</description>
         <link>http://momox.net/blog/2008/07/mysql_dbmysql.html</link>
         <guid>http://momox.net/blog/2008/07/mysql_dbmysql.html</guid>
         <category>Linux関連</category>
         <pubDate>Tue, 01 Jul 2008 05:14:22 +0900</pubDate>
      </item>
            <item>
         <title>ddの使い方</title>
         <description><![CDATA[<div>

ＵＳＢ接続のＨＤをＬｉｎｕｘマシンに接続すしてＬｉｎｕｘマシン上のＨＤスペースにバックアップするには。

dd bs=512 if=/dev/sda  of=/var/bkup

のように使用します。

ヒント：

USBのＨＤをＬｉｎｕｘに接続すると

　tail /var/log/messages

で調べると  /dev/XXX  のＸＸＸを調べられます。



バックアップ先　（of= xxxxx）は、適当に作成する。

ｂｓ＝512は、

　　fdisk /dev/xxx

でバックアップするＨＤの情報を調べます。

fdisk /dev/hda

とか入力すると、、、

Disk /dev/hda: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

とかってでてくるので、
512のところを参考にします。


</div>
<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- SiteSearch Google -->
<form method="get" action="http://www.google.com/custom" target="_top">
<table border="0" bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">
<a href="http://www.google.com/">
<img src="http://www.google.com/logos/Logo_25wht.gif" border="0" alt="Google" align="middle"></img></a>
</td>
<td nowrap="nowrap">
<input type="hidden" name="domains" value="momx.net"></input>
<label for="sbi" style="display: none">検索用語を入力</label>
<input type="text" name="q" size="31" maxlength="255" value="" id="sbi"></input>
<label for="sbb" style="display: none">検索フォームを送信</label>
<input type="submit" name="sa" value="検索" id="sbb"></input>
</td></tr>
<tr>
<td>&nbsp;</td>
<td nowrap="nowrap">
<table>
<tr>
<td>
<input type="radio" name="sitesearch" value="" checked id="ss0"></input>
<label for="ss0" title="ウェブ検索"><font size="-1" color="#000000">Web</font></label></td>
<td>
<input type="radio" name="sitesearch" value="momx.net" id="ss1"></input>
<label for="ss1" title="検索 momx.net"><font size="-1" color="#000000">momx.net</font></label></td>
</tr>
</table>
<input type="hidden" name="client" value="pub-5826587501911774"></input>
<input type="hidden" name="forid" value="1"></input>
<input type="hidden" name="ie" value="Shift_JIS"></input>
<input type="hidden" name="oe" value="Shift_JIS"></input>
<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1"></input>
<input type="hidden" name="hl" value="ja"></input>
</td></tr></table>
</form>
<!-- SiteSearch Google -->]]></description>
         <link>http://momox.net/blog/2008/04/dd_1.html</link>
         <guid>http://momox.net/blog/2008/04/dd_1.html</guid>
         <category>Linux関連</category>
         <pubDate>Thu, 03 Apr 2008 15:30:18 +0900</pubDate>
      </item>
            <item>
         <title>LinuxやFreeBSDを入れていたHDにWinXPインストールできない</title>
         <description><![CDATA[<div>
LinuxやFreeBSDをインストールしたHDにWindowsをインストールしようとすると
インストーラがHDを認識しなかった。

MBRをクリアするとよいとある。
Windows2000インストールCDで立ち上げて、修正モードを選び

fixmbr

でクリアできる。

クリアした後も、どうもWinXPのインストールCDからはうまくいかなかった
Win2000のCDから起動しフォーマットまで行ってWinXPをインストールす
るとOKのようである。
</div>

<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- SiteSearch Google -->
<form method="get" action="http://www.google.com/custom" target="_top">
<table border="0" bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">
<a href="http://www.google.com/">
<img src="http://www.google.com/logos/Logo_25wht.gif" border="0" alt="Google" align="middle"></img></a>
</td>
<td nowrap="nowrap">
<input type="hidden" name="domains" value="momx.net"></input>
<label for="sbi" style="display: none">検索用語を入力</label>
<input type="text" name="q" size="31" maxlength="255" value="" id="sbi"></input>
<label for="sbb" style="display: none">検索フォームを送信</label>
<input type="submit" name="sa" value="検索" id="sbb"></input>
</td></tr>
<tr>
<td>&nbsp;</td>
<td nowrap="nowrap">
<table>
<tr>
<td>
<input type="radio" name="sitesearch" value="" checked id="ss0"></input>
<label for="ss0" title="ウェブ検索"><font size="-1" color="#000000">Web</font></label></td>
<td>
<input type="radio" name="sitesearch" value="momx.net" id="ss1"></input>
<label for="ss1" title="検索 momx.net"><font size="-1" color="#000000">momx.net</font></label></td>
</tr>
</table>
<input type="hidden" name="client" value="pub-5826587501911774"></input>
<input type="hidden" name="forid" value="1"></input>
<input type="hidden" name="ie" value="Shift_JIS"></input>
<input type="hidden" name="oe" value="Shift_JIS"></input>
<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1"></input>
<input type="hidden" name="hl" value="ja"></input>
</td></tr></table>
</form>
]]></description>
         <link>http://momox.net/blog/2008/02/linuxfreebsdhdwinxp.html</link>
         <guid>http://momox.net/blog/2008/02/linuxfreebsdhdwinxp.html</guid>
         <category>WINDOWS</category>
         <pubDate>Sat, 02 Feb 2008 08:27:28 +0900</pubDate>
      </item>
            <item>
         <title>16GBのSDHCカードが1万円割</title>
         <description><![CDATA[<div>
2008.1.20

16GBのSDHCカードが1万円割しています。

ここで買えます。

上海問屋　（http://www.donya.jp/item/1691.html）

</div>
<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- SiteSearch Google -->
<form method="get" action="http://www.google.com/custom" target="_top">
<table border="0" bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">
<a href="http://www.google.com/">
<img src="http://www.google.com/logos/Logo_25wht.gif" border="0" alt="Google" align="middle"></img></a>
</td>
<td nowrap="nowrap">
<input type="hidden" name="domains" value="momx.net"></input>
<label for="sbi" style="display: none">検索用語を入力</label>
<input type="text" name="q" size="31" maxlength="255" value="" id="sbi"></input>
<label for="sbb" style="display: none">検索フォームを送信</label>
<input type="submit" name="sa" value="検索" id="sbb"></input>
</td></tr>
<tr>
<td>&nbsp;</td>
<td nowrap="nowrap">
<table>
<tr>
<td>
<input type="radio" name="sitesearch" value="" checked id="ss0"></input>
<label for="ss0" title="ウェブ検索"><font size="-1" color="#000000">Web</font></label></td>
<td>
<input type="radio" name="sitesearch" value="momx.net" id="ss1"></input>
<label for="ss1" title="検索 momx.net"><font size="-1" color="#000000">momx.net</font></label></td>
</tr>
</table>
<input type="hidden" name="client" value="pub-5826587501911774"></input>
<input type="hidden" name="forid" value="1"></input>
<input type="hidden" name="ie" value="Shift_JIS"></input>
<input type="hidden" name="oe" value="Shift_JIS"></input>
<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1"></input>
<input type="hidden" name="hl" value="ja"></input>
</td></tr></table>
</form>
<!-- SiteSearch Google -->]]></description>
         <link>http://momox.net/blog/2008/01/16gbsdhc1.html</link>
         <guid>http://momox.net/blog/2008/01/16gbsdhc1.html</guid>
         <category>おすすめ</category>
         <pubDate>Sun, 20 Jan 2008 09:55:52 +0900</pubDate>
      </item>
            <item>
         <title>携帯サイトでクリックしたら電話する方法</title>
         <description><![CDATA[<div>
携帯サイトでクリックで電話するには

＜ａ　ｈｒｅｆ＝”ｔｅｌ：電話番号”＞電話番号＜/ａ＞

で可能です。
</div>

<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- SiteSearch Google -->
<form method="get" action="http://www.google.com/custom" target="_top">
<table border="0" bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">
<a href="http://www.google.com/">
<img src="http://www.google.com/logos/Logo_25wht.gif" border="0" alt="Google" align="middle"></img></a>
</td>
<td nowrap="nowrap">
<input type="hidden" name="domains" value="momx.net"></input>
<label for="sbi" style="display: none">検索用語を入力</label>
<input type="text" name="q" size="31" maxlength="255" value="" id="sbi"></input>
<label for="sbb" style="display: none">検索フォームを送信</label>
<input type="submit" name="sa" value="検索" id="sbb"></input>
</td></tr>
<tr>
<td>&nbsp;</td>
<td nowrap="nowrap">
<table>
<tr>
<td>
<input type="radio" name="sitesearch" value="" checked id="ss0"></input>
<label for="ss0" title="ウェブ検索"><font size="-1" color="#000000">Web</font></label></td>
<td>
<input type="radio" name="sitesearch" value="momx.net" id="ss1"></input>
<label for="ss1" title="検索 momx.net"><font size="-1" color="#000000">momx.net</font></label></td>
</tr>
</table>
<input type="hidden" name="client" value="pub-5826587501911774"></input>
<input type="hidden" name="forid" value="1"></input>
<input type="hidden" name="ie" value="Shift_JIS"></input>
<input type="hidden" name="oe" value="Shift_JIS"></input>
<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1"></input>
<input type="hidden" name="hl" value="ja"></input>
</td></tr></table>
</form>
<!-- SiteSearch Google -->]]></description>
         <link>http://momox.net/blog/2008/01/post_13.html</link>
         <guid>http://momox.net/blog/2008/01/post_13.html</guid>
         <category>コンピュータを学ぶ</category>
         <pubDate>Fri, 18 Jan 2008 14:08:09 +0900</pubDate>
      </item>
            <item>
         <title>livna Fedora8</title>
         <description><![CDATA[<div>
livnaリポジトリを追加するには、

rpm -ivh http://rpm.livna.org/livna-release-8.rpm

とすると、mplayerなどのソフトがyumでインストールできるようになります。

(参考）http://rpm.livna.org/rlowiki/UsingLivna
</div>

<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- SiteSearch Google -->
<form method="get" action="http://www.google.com/custom" target="_top">
<table border="0" bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">
<a href="http://www.google.com/">
<img src="http://www.google.com/logos/Logo_25wht.gif" border="0" alt="Google" align="middle"></img></a>
</td>
<td nowrap="nowrap">
<input type="hidden" name="domains" value="momx.net"></input>
<label for="sbi" style="display: none">検索用語を入力</label>
<input type="text" name="q" size="31" maxlength="255" value="" id="sbi"></input>
<label for="sbb" style="display: none">検索フォームを送信</label>
<input type="submit" name="sa" value="検索" id="sbb"></input>
</td></tr>
<tr>
<td>&nbsp;</td>
<td nowrap="nowrap">
<table>
<tr>
<td>
<input type="radio" name="sitesearch" value="" checked id="ss0"></input>
<label for="ss0" title="ウェブ検索"><font size="-1" color="#000000">Web</font></label></td>
<td>
<input type="radio" name="sitesearch" value="momx.net" id="ss1"></input>
<label for="ss1" title="検索 momx.net"><font size="-1" color="#000000">momx.net</font></label></td>
</tr>
</table>
<input type="hidden" name="client" value="pub-5826587501911774"></input>
<input type="hidden" name="forid" value="1"></input>
<input type="hidden" name="ie" value="Shift_JIS"></input>
<input type="hidden" name="oe" value="Shift_JIS"></input>
<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1"></input>
<input type="hidden" name="hl" value="ja"></input>
</td></tr></table>
</form>
<!-- SiteSearch Google -->]]></description>
         <link>http://momox.net/blog/2007/11/livna_fedora8_1.html</link>
         <guid>http://momox.net/blog/2007/11/livna_fedora8_1.html</guid>
         <category>Linux関連</category>
         <pubDate>Sat, 10 Nov 2007 08:29:04 +0900</pubDate>
      </item>
            <item>
         <title>Fedora8　公開　2007.11.8</title>
         <description><![CDATA[<div>
ついにFedora8が公開されました。
ダウンロードは次から可能です。

インストールDVDの入手先　　　

　　　　　http://fedoraproject.org/get-fedora

ISOをDVDに焼く　　　　　　　　　 

　　　　　DVDDecrypterを使うと良い。
　　　　　(ISOメニューから Writeを選ぶとISOからDVDが焼ける）



</div>
<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- SiteSearch Google -->
<form method="get" action="http://www.google.com/custom" target="_top">
<table border="0" bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">
<a href="http://www.google.com/">
<img src="http://www.google.com/logos/Logo_25wht.gif" border="0" alt="Google" align="middle"></img></a>
</td>
<td nowrap="nowrap">
<input type="hidden" name="domains" value="momx.net"></input>
<label for="sbi" style="display: none">検索用語を入力</label>
<input type="text" name="q" size="31" maxlength="255" value="" id="sbi"></input>
<label for="sbb" style="display: none">検索フォームを送信</label>
<input type="submit" name="sa" value="検索" id="sbb"></input>
</td></tr>
<tr>
<td>&nbsp;</td>
<td nowrap="nowrap">
<table>
<tr>
<td>
<input type="radio" name="sitesearch" value="" checked id="ss0"></input>
<label for="ss0" title="ウェブ検索"><font size="-1" color="#000000">Web</font></label></td>
<td>
<input type="radio" name="sitesearch" value="momx.net" id="ss1"></input>
<label for="ss1" title="検索 momx.net"><font size="-1" color="#000000">momx.net</font></label></td>
</tr>
</table>
<input type="hidden" name="client" value="pub-5826587501911774"></input>
<input type="hidden" name="forid" value="1"></input>
<input type="hidden" name="ie" value="Shift_JIS"></input>
<input type="hidden" name="oe" value="Shift_JIS"></input>
<input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1"></input>
<input type="hidden" name="hl" value="ja"></input>
</td></tr></table>
</form>
<!-- SiteSearch Google -->]]></description>
         <link>http://momox.net/blog/2007/11/fedora82007118_1.html</link>
         <guid>http://momox.net/blog/2007/11/fedora82007118_1.html</guid>
         <category>Linux関連</category>
         <pubDate>Sat, 10 Nov 2007 08:08:09 +0900</pubDate>
      </item>
            <item>
         <title>fedora7 firefoxでadobe flashを使うには　yum</title>
         <description><![CDATA[<div>

１．yumレポジトリのインストール

rpm -ivh http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm


２.　flashのインストール

yum -y install flash-plugin


以上で導入できます。

また、.tgzや.rpmをダウンロードしてインストールすることもできるようです。

</div>
<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
]]></description>
         <link>http://momox.net/blog/2007/10/fedora7_firefoxadobe_flashyum.html</link>
         <guid>http://momox.net/blog/2007/10/fedora7_firefoxadobe_flashyum.html</guid>
         <category>Linux関連</category>
         <pubDate>Wed, 31 Oct 2007 23:44:46 +0900</pubDate>
      </item>
            <item>
         <title>Fedora7 ThinkPadのTrackPointのスクロールを有効に</title>
         <description><![CDATA[Fedora7 ThinkPadのTrackPointのスクロールを有効にするには、

 /etc/X11/xorg.conf

を以下を参考に編集します。

＜以下マウスの部分を抜粋＞

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
Option "Emulate3Timeout" "50"
Option "EmulateWheel" "yes"
Option "EmulateWheelButton" "2"
Option "EmulateInertia" "50"
EndSection

ちなみに、私は、ThinkPad X22を使っています。
過去、FedoraCore6 FedoraCore5 FedoraCore4でも同じように
トラックポイントでスクロールできました。

<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>]]></description>
         <link>http://momox.net/blog/2007/10/fedora7_thinkpadtrackpoint_1.html</link>
         <guid>http://momox.net/blog/2007/10/fedora7_thinkpadtrackpoint_1.html</guid>
         <category>Linux関連</category>
         <pubDate>Wed, 31 Oct 2007 22:24:27 +0900</pubDate>
      </item>
            <item>
         <title>プロセスの中身を見るツール</title>
         <description><![CDATA[strace  

   yum install strace でインストールできる。

gdb

　 yum install gdb  でインストールできる。

これらのツールを使うとプログラムがどのように動いているか確認できる。

<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>]]></description>
         <link>http://momox.net/blog/2007/10/post_42.html</link>
         <guid>http://momox.net/blog/2007/10/post_42.html</guid>
         <category>Linux関連</category>
         <pubDate>Fri, 19 Oct 2007 07:36:12 +0900</pubDate>
      </item>
            <item>
         <title>IE(インターネット・エクスプローラ）から印刷できない</title>
         <description><![CDATA[<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>



<div>
IEで印刷プレビューをしたときに白紙になって印刷ができない。

【解決方法】

余白のサイズを１９．０５のように変更する。
</div>
]]></description>
         <link>http://momox.net/blog/2007/10/ie.html</link>
         <guid>http://momox.net/blog/2007/10/ie.html</guid>
         <category>WINDOWS</category>
         <pubDate>Thu, 11 Oct 2007 10:29:22 +0900</pubDate>
      </item>
            <item>
         <title>UC Berkeley on iTunes U</title>
         <description><![CDATA[<div>
iTunesを使って勉強する。

UC BerkeleyといえばUnixが発展していく中で活躍した大学のひとつです。

ここの講義がなんとそのまま聴けてしまうのです。

しかも、iTunesで同期して聞ける。

クラスで使用しているノートやパワーポイントなんかもウェブ上においてあります。

ためしに聞いてみました。私は、Computer Science学位を持っているのですが

なかなか、在学時代には学べなかったすばらしい内容でした。

かなり、お勧めです。

http://itunes.berkeley.edu/

へいくか、iTunes　Store から　iTunes Uへ。

</div>

<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>]]></description>
         <link>http://momox.net/blog/2007/10/uc_berkeley_on_itunes_u.html</link>
         <guid>http://momox.net/blog/2007/10/uc_berkeley_on_itunes_u.html</guid>
         <category>おすすめ</category>
         <pubDate>Tue, 09 Oct 2007 19:46:11 +0900</pubDate>
      </item>
            <item>
         <title>puttyjp.exe</title>
         <description><![CDATA[<div>
puttyjpは、

windowsからsshでunix/Linuxにアクセスするのに便利なソフトです。

文字コードをUTF-8に変更しておくとFedoraにアクセスするときには便利です。

puttyjp.exeを起動して、

　　ウインドウ　　－＞　　変換　　－＞　　UTF-8(CJK) 

を選択して

　　セッション　　－＞　Default Settings　をクリックし　

保存しておきます。

puttyjp.exe は、windows から Unix/Linuxを使うのに欠かせないプログラムです。

</div>
<div><br></div>
<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>


]]></description>
         <link>http://momox.net/blog/2007/10/puttyjpexe.html</link>
         <guid>http://momox.net/blog/2007/10/puttyjpexe.html</guid>
         <category></category>
         <pubDate>Tue, 09 Oct 2007 19:22:35 +0900</pubDate>
      </item>
            <item>
         <title>livna FC5 test</title>
         <description><![CDATA[yumコマンドを使ってもインストールできないパッケージが数多くあります。

例えば、動画を見るためのソフトで xine や mplayerなどです。

/etc/yum.repos.d/

にこれらのパッケージを持っているリポジトリを追加しておく必要があります。

yumするときは、ここもチェックしてねということです。

FedoraCore4 FedoraCore5は、このlivnaリポジトリを導入するのは簡単になっています。

http://rpm.livna.org/configuration.html

で確認できます。

＜やり方＞　FedoraCore5の場合

rpm -ivh http://rpm.livna.org/livna-release-5.rpm

としてlivna-release-5パッケージを導入するだけです。

＜導入確認＞

どんなファイルがインストールされているか確認してみましょう。

rpm -ql livna-release-5
/etc/pki/rpm-gpg/RPM-GPG-KEY-livna
/etc/yum.repos.d/livna-devel.repo
/etc/yum.repos.d/livna-testing.repo
/etc/yum.repos.d/livna.repo

gpg-keyがインストールされ、.repoファイルが/etc/yum.repos.d/にコピーされます。

<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>]]></description>
         <link>http://momox.net/blog/2007/10/livna_fc5_test.html</link>
         <guid>http://momox.net/blog/2007/10/livna_fc5_test.html</guid>
         <category>Linux関連</category>
         <pubDate>Tue, 09 Oct 2007 09:24:53 +0900</pubDate>
      </item>
            <item>
         <title>livna FC5 test</title>
         <description><![CDATA[yumコマンドを使ってもインストールできないパッケージが数多くあります。

例えば、動画を見るためのソフトで xine や mplayerなどです。




<div class="ads">
<script type="text/javascript"><!--
google_ad_client = "pub-5826587501911774";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_link = "0000FF";
google_color_bg = "FFFFFF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>]]></description>
         <link>http://momox.net/blog/2007/10/livna_fc5_test_1.html</link>
         <guid>http://momox.net/blog/2007/10/livna_fc5_test_1.html</guid>
         <category>Linux関連</category>
         <pubDate>Tue, 09 Oct 2007 09:24:53 +0900</pubDate>
      </item>
      
   </channel>
</rss>
