<?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: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-2551252367558873613</id><updated>2012-02-11T21:35:09.713+09:00</updated><title type='text'>ソフト設定忘却録</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>18</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-2746981778221766219</id><published>2007-11-28T23:31:00.000+09:00</published><updated>2007-11-29T01:05:24.060+09:00</updated><title type='text'>squirrelmail-1.4.8-4.0.1.el4.centos4で件名が文字化け２</title><content type='html'>「http://www.squirrelmail.jp/node.php?id=269」を参照&lt;br /&gt;&lt;br /&gt;変更ファイル名&lt;br /&gt;/usr/share/squirrelmail/functions/i18n.php&lt;br /&gt;&lt;br /&gt;以下の部分を変更&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;332行目付近に追加&lt;br /&gt;&lt;br /&gt;        if ($squirrelmail_language == 'ja_JP') {&lt;br /&gt;            header ('Content-Type: text/html; charset=EUC-JP');&lt;br /&gt;            if (!function_exists('mb_internal_encoding')) {&lt;br /&gt;                echo _("You need to have PHP installed with the multibyte string function&lt;br /&gt;enabled (using configure option --enable-mbstring).");&lt;br /&gt;                // Revert to English link has to be added.&lt;br /&gt;                // stop further execution in order not to get php errors on mb_internal_en&lt;br /&gt;coding().&lt;br /&gt;                return;&lt;br /&gt;            }&lt;br /&gt;            if (function_exists('mb_language')) {&lt;br /&gt;                mb_language('Japanese');&lt;br /&gt;            }&lt;br /&gt;            &lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;mb_detect_order('ASCII,JIS,EUC-JP,UTF-8,SJIS');&lt;/span&gt;&lt;br /&gt;            mb_internal_encoding('EUC-JP');&lt;br /&gt;            mb_http_output('pass');&lt;br /&gt;        } elseif ($squirrelmail_language == 'en_US') {&lt;br /&gt;            header( 'Content-Type: text/html; charset=' . $default_charset );&lt;br /&gt;        } else {&lt;br /&gt;&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;483行目付近を変更&lt;br /&gt;&lt;br /&gt;修正前&lt;br /&gt;function japanese_charset_xtra() {&lt;br /&gt;   $ret = func_get_arg(1);  /* default return value */&lt;br /&gt;   if (function_exists('mb_detect_encoding')) {&lt;br /&gt;       switch (func_get_arg(0)) { /* action */&lt;br /&gt;       case 'decode':&lt;br /&gt;           $detect_encoding = @mb_detect_encoding($ret);&lt;br /&gt;           if ($detect_encoding == 'JIS' ||&lt;br /&gt;               $detect_encoding == 'EUC-JP' ||&lt;br /&gt;               $detect_encoding == 'SJIS' ||&lt;br /&gt;               $detect_encoding == 'UTF-8') {&lt;br /&gt;&lt;br /&gt;               $ret = mb_convert_kana(mb_convert_encoding($ret, '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;AUTO&lt;/span&gt;'), "KV");&lt;br /&gt;           }&lt;br /&gt;           break;&lt;br /&gt;       case 'encode':&lt;br /&gt;           $detect_encoding = @mb_detect_encoding($ret);&lt;br /&gt;           if ($detect_encoding == 'JIS' ||&lt;br /&gt;               $detect_encoding == 'EUC-JP' ||&lt;br /&gt;               $detect_encoding == 'SJIS' ||&lt;br /&gt;               $detect_encoding == 'UTF-8') {&lt;br /&gt;&lt;br /&gt;               $ret = mb_convert_encoding(mb_convert_kana($ret, "KV"), 'JIS', '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;AUTO&lt;/span&gt;');&lt;br /&gt;           }&lt;br /&gt;           break;&lt;br /&gt;       case 'strimwidth':&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;修正後&lt;br /&gt;function japanese_charset_xtra() {&lt;br /&gt;   $ret = func_get_arg(1);  /* default return value */&lt;br /&gt;   if (function_exists('mb_detect_encoding')) {&lt;br /&gt;       switch (func_get_arg(0)) { /* action */&lt;br /&gt;       case 'decode':&lt;br /&gt;           $detect_encoding = @mb_detect_encoding($ret);&lt;br /&gt;           if ($detect_encoding == 'JIS' ||&lt;br /&gt;               $detect_encoding == 'EUC-JP' ||&lt;br /&gt;               $detect_encoding == 'SJIS' ||&lt;br /&gt;               $detect_encoding == 'UTF-8') {&lt;br /&gt;&lt;br /&gt;               $ret = mb_convert_kana(mb_convert_encoding($ret, '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;ASCII,JIS,EUC-JP,UTF-8,SJIS&lt;/span&gt;'), "KV");&lt;br /&gt;           }&lt;br /&gt;           break;&lt;br /&gt;       case 'encode':&lt;br /&gt;           $detect_encoding = @mb_detect_encoding($ret);&lt;br /&gt;           if ($detect_encoding == 'JIS' ||&lt;br /&gt;               $detect_encoding == 'EUC-JP' ||&lt;br /&gt;               $detect_encoding == 'SJIS' ||&lt;br /&gt;               $detect_encoding == 'UTF-8') {&lt;br /&gt;&lt;br /&gt;               $ret = mb_convert_encoding(mb_convert_kana($ret, "KV"), 'JIS', '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;ASCII,JIS,EUC-JP,UTF-8,SJIS&lt;/span&gt;');&lt;br /&gt;           }&lt;br /&gt;           break;&lt;br /&gt;       case 'strimwidth':&lt;br /&gt;&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;530行目付近を変更&lt;br /&gt;&lt;br /&gt;修正前&lt;br /&gt;       case 'decodeheader':&lt;br /&gt;           $ret = str_replace("\t", "", $ret);&lt;br /&gt;           if (eregi('=\\?([^?]+)\\?(q|b)\\?([^?]+)\\?=', $ret))&lt;br /&gt;               $ret = @mb_decode_mimeheader($ret);&lt;br /&gt;           $ret = @mb_convert_encoding($ret, 'EUC-JP', '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;AUTO&lt;/span&gt;');&lt;br /&gt;           break;&lt;br /&gt;       case 'downloadfilename':&lt;br /&gt;           $useragent = func_get_arg(2);&lt;br /&gt;           if (strstr($useragent, 'Windows') !== false ||&lt;br /&gt;               strstr($useragent, 'Mac_') !== false) {&lt;br /&gt;               $ret = mb_convert_encoding($ret, 'UTF-8', '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;AUTO&lt;/span&gt;');&lt;br /&gt;           } else {&lt;br /&gt;               $ret = mb_convert_encoding($ret, 'EUC-JP', '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;AUTO&lt;/span&gt;');&lt;br /&gt;}&lt;br /&gt;           break;&lt;br /&gt;&lt;br /&gt;修正後&lt;br /&gt;       case 'decodeheader':&lt;br /&gt;           $ret = str_replace("\t", "", $ret);&lt;br /&gt;           if (eregi('=\\?([^?]+)\\?(q|b)\\?([^?]+)\\?=', $ret))&lt;br /&gt;               $ret = @mb_decode_mimeheader($ret);&lt;br /&gt;           $ret = @mb_convert_encoding($ret, 'EUC-JP','&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;ASCII,JIS,EUC-JP,UTF-8,SJIS&lt;/span&gt;');&lt;br /&gt;           break;&lt;br /&gt;       case 'downloadfilename':&lt;br /&gt;           $useragent = func_get_arg(2);&lt;br /&gt;           if (strstr($useragent, 'Windows') !== false ||&lt;br /&gt;               strstr($useragent, 'Mac_') !== false) {&lt;br /&gt;               $ret = mb_convert_encoding($ret, 'UTF-8', '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;ASCII,JIS,EUC-JP,UTF-8,SJIS&lt;/span&gt;');&lt;br /&gt;           } else {&lt;br /&gt;               $ret = mb_convert_encoding($ret, 'EUC-JP', '&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;ASCII,JIS,EUC-JP,UTF-8,SJIS&lt;/span&gt;');&lt;br /&gt;}&lt;br /&gt;           break;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-2746981778221766219?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/2746981778221766219/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=2746981778221766219' title='23 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/2746981778221766219'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/2746981778221766219'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2007/11/squirrelmail-148-401el4centos4.html' title='squirrelmail-1.4.8-4.0.1.el4.centos4で件名が文字化け２'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>23</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-6291271509792292832</id><published>2007-05-21T02:12:00.000+09:00</published><updated>2007-05-21T02:18:25.100+09:00</updated><title type='text'>CentOSでXEN仮想サーバの作成</title><content type='html'>之だけで後はウイザード形式でインストール可能だ&lt;br /&gt;# virt-install -n piglet -r 256 -f /xen/piglet -s 16 --nographics -l ftp:&lt;br /&gt;//ftp.riken.go.jp/Linux/centos/5.0/os/i386&lt;br /&gt;&lt;br /&gt;参考URL&lt;br /&gt;http://shain.tomocreative.net/2007/04/xen_centos5virtinstall_1.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-6291271509792292832?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/6291271509792292832/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=6291271509792292832' title='332 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/6291271509792292832'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/6291271509792292832'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2007/05/centosxen.html' title='CentOSでXEN仮想サーバの作成'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>332</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-4641003678748453551</id><published>2007-05-01T01:10:00.000+09:00</published><updated>2007-05-01T01:25:44.977+09:00</updated><title type='text'>VMWare 仮想マシンの時刻ずれ問題</title><content type='html'>AMD x2、Pentium4環境で仮想端末のClockが異常に早くなる現象に遭遇&lt;br /&gt;（CentOS4.4）&lt;br /&gt;&lt;br /&gt;５秒ほど画面を眺めると１分２分と進んでいく&lt;br /&gt;解決方法はカーネルのブートオプションを変更&lt;br /&gt;「clock=pit nosmp noapic　nolapic」を追加する事で解決&lt;br /&gt;　http://webos-goodies.jp/archives/50179807.html&lt;br /&gt;&lt;br /&gt;default=0&lt;br /&gt;timeout=5&lt;br /&gt;splashimage=(hd0,0)/grub/splash.xpm.gz&lt;br /&gt;hiddenmenu&lt;br /&gt;title CentOS (2.6.9-42.0.8.EL)&lt;br /&gt;        root (hd0,0)&lt;br /&gt;        kernel /vmlinuz-2.6.9-42.0.8.EL ro root=LABEL=/ &lt;span style="font-weight:bold;"&gt;clock=pit nosmp noapic　nolapic&lt;/span&gt; rhgb quiet&lt;br /&gt;        initrd /initrd-2.6.9-42.0.8.EL.img&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-4641003678748453551?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/4641003678748453551/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=4641003678748453551' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/4641003678748453551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/4641003678748453551'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2007/05/vmware.html' title='VMWare 仮想マシンの時刻ずれ問題'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-3761519695598232936</id><published>2007-01-31T02:07:00.000+09:00</published><updated>2007-01-31T02:14:30.311+09:00</updated><title type='text'>squirrelmail-1.4.8-2.el4.centos4でログインIDにデフォルトのドメイン名</title><content type='html'>バーチャルドメインを運用すると、ユーザーアカウント名にドメイン名を付加する事が有ります。&lt;br /&gt;しかし、大部分の人は固定のドメイン名が付加されている場合デフォルトのドメイン名が有ればユーザビリティが良く成ります。&lt;br /&gt;&lt;br /&gt;以下の部分を変更&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;変更ファイル名：&lt;br /&gt;/usr/share/squirrelmail/src/redirect.php&lt;br /&gt;&lt;br /&gt;以下の行（208行目付近）を追加（太字部分）&lt;br /&gt;&lt;br /&gt;if (!sqsession_is_registered('user_is_logged_in')) {&lt;br /&gt;  do_hook ('login_before');&lt;br /&gt;&lt;br /&gt;  $onetimepad = OneTimePadCreate(strlen($secretkey));&lt;br /&gt;  $key = OneTimePadEncrypt($secretkey, $onetimepad);&lt;br /&gt;  sqsession_register($onetimepad, 'onetimepad');&lt;br /&gt;&lt;br /&gt;  /* remove redundant spaces */&lt;br /&gt;  $login_username = trim($login_username);&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;   /* @が無い場合はデフォルトのドメイン名を追加 @example.com */&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;   $domainpos = strrpos($login_username,"@");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;   if ($domainpos === false) {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;       $login_username .= "@example.com";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;  /* Verify that username and password are correct. */&lt;br /&gt;  if ($force_username_lowercase) {&lt;br /&gt;      $login_username = strtolower($login_username);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-3761519695598232936?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/3761519695598232936/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=3761519695598232936' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/3761519695598232936'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/3761519695598232936'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2007/01/squirrelmail-148-2el4centos4id.html' title='squirrelmail-1.4.8-2.el4.centos4でログインIDにデフォルトのドメイン名'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-1884390845136652877</id><published>2007-01-30T00:45:00.000+09:00</published><updated>2007-05-01T01:25:26.901+09:00</updated><title type='text'>squirrelmail-1.4.8-2.el4.centos4で添付ファイル名が文字化け</title><content type='html'>件名と同じ直し方で文字化けしなくなったので暫く使う&lt;br /&gt;　→解決しなかった&lt;br /&gt;　　結局、1.4.9aの日本語パッチを手動で当てた事で解決&lt;br /&gt;　　http://www.yamaai-tech.com/~masato/Download/&lt;br /&gt;&lt;br /&gt;以下の部分を変更&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;変更ファイル名：&lt;br /&gt;/usr/share/squirrelmail/functions/i18n.php&lt;br /&gt;&lt;br /&gt;以下の行（540行目）の内容を変更&lt;br /&gt;変更前：&lt;br /&gt;       case 'downloadfilename':&lt;br /&gt;           $useragent = func_get_arg(2);&lt;br /&gt;           if (strstr($useragent, 'Windows') !== false ||&lt;br /&gt;               strstr($useragent, 'Mac_') !== false) {&lt;br /&gt;               $ret = mb_convert_encoding($ret, 'SJIS', 'AUTO');&lt;br /&gt;           } else {&lt;br /&gt;               $ret = mb_convert_encoding($ret, 'EUC-JP', 'AUTO');&lt;br /&gt;}&lt;br /&gt;           break;&lt;br /&gt;&lt;br /&gt;変更後：&lt;br /&gt;       case 'downloadfilename':&lt;br /&gt;           $useragent = func_get_arg(2);&lt;br /&gt;           if (strstr($useragent, 'Windows') !== false ||&lt;br /&gt;               strstr($useragent, 'Mac_') !== false) {&lt;br /&gt;               $ret = mb_convert_encoding($ret, '&lt;span style="font-weight:bold;"&gt;UTF-8&lt;/span&gt;', 'AUTO');&lt;br /&gt;           } else {&lt;br /&gt;               $ret = mb_convert_encoding($ret, 'EUC-JP', 'AUTO');&lt;br /&gt;}&lt;br /&gt;           break;&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;変更ファイル名：&lt;br /&gt;/usr/share/squirrelmail/functions/mime.php&lt;br /&gt;&lt;br /&gt;以下の行（2160行目）の内容を変更&lt;br /&gt;変更前：&lt;br /&gt;   if (preg_match('/compatible; MSIE ([0-9]+)/', $HTTP_USER_AGENT, $match) &amp;&amp;amp;amp;&lt;br /&gt;       ((int)$match[1]) &gt;= 6 &amp;&amp;amp; strstr($HTTP_USER_AGENT, 'Opera') === false) {&lt;br /&gt;       $isIE6plus = true;&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;変更後：&lt;br /&gt;   if (preg_match('/compatible; MSIE&lt;span style="font-weight: bold;"&gt;\s?&lt;/span&gt;([0-9]+)/', $HTTP_USER_AGENT, $match) &amp;&amp;amp;amp;&lt;br /&gt;       ((int)$match[1]) &gt;= 6 &amp;&amp;amp; strstr($HTTP_USER_AGENT, 'Opera') === false) {&lt;br /&gt;       $isIE6plus = true;&lt;br /&gt;   }&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-1884390845136652877?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/1884390845136652877/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=1884390845136652877' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/1884390845136652877'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/1884390845136652877'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2007/01/squirrelmail-148-2el4centos4_30.html' title='squirrelmail-1.4.8-2.el4.centos4で添付ファイル名が文字化け'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-5589701049884943287</id><published>2007-01-25T01:03:00.000+09:00</published><updated>2007-02-07T22:55:18.644+09:00</updated><title type='text'>squirrelmail-1.4.8-2.el4.centos4で件名が文字化け</title><content type='html'>&lt;pre&gt;&lt;br /&gt;「http://www.squirrelmail.jp/node.php?id=290」より引用&lt;br /&gt;&lt;br /&gt;以下の部分を変更&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;変更ファイル名：&lt;br /&gt;&lt;span style="font-style: italic;"&gt;/usr/share/squirrelmail/class/deliver/Deliver.class.php&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;563行目～569行目あたりのswitch構文の中に、&lt;br /&gt;case 'Subject':&lt;br /&gt;を追加&lt;br /&gt;&lt;span style="font-style: italic;"&gt;                    }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;                }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;                $hdr_s .= $sLine;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;                break;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            &lt;span style="font-weight: bold;"&gt;case 'Subject':&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            case 'To':&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            case 'Cc':&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            case 'Bcc':&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            case 'From':&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;                $hdr_s .= $header[$i];&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;                break;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            default: $hdr_s .= $this-&gt;foldLine($header[$i], 78, str_pad('',4)); break;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;----------------------------------------------------------------&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-5589701049884943287?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/5589701049884943287/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=5589701049884943287' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5589701049884943287'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5589701049884943287'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2007/01/squirrelmail-148-2el4centos4.html' title='squirrelmail-1.4.8-2.el4.centos4で件名が文字化け'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-4538344716160339540</id><published>2007-01-24T23:58:00.000+09:00</published><updated>2007-01-25T00:06:29.961+09:00</updated><title type='text'>オンラインでLVMボリュームを拡張した</title><content type='html'>&lt;pre&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; df&lt;br /&gt;Filesystem           1K-ブロック    使用   使用可 使用% マウント位置&lt;br /&gt;/dev/hda5             13827976   2910672  10214864  23% /&lt;br /&gt;/dev/hda1               101086     11504     84363  12% /boot&lt;br /&gt;none                    199044         0    199044   0% /dev/shm&lt;br /&gt;/dev/mapper/gp00-vol00&lt;br /&gt;                      20642428     77944  19515908   1% /home&lt;br /&gt;/dev/hda3               505636     11767    467764   3% /var/log&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; fdisk -l&lt;br /&gt;&lt;br /&gt;Disk /dev/hda: 16.1 GB, 16106127360 bytes&lt;br /&gt;255 heads, 63 sectors/track, 1958 cylinders&lt;br /&gt;Units = シリンダ数 of 16065 * 512 = 8225280 bytes&lt;br /&gt;&lt;br /&gt;デバイス Boot      Start         End      Blocks   Id  System&lt;br /&gt;/dev/hda1   *           1          13      104391   83  Linux&lt;br /&gt;/dev/hda2              14         144     1052257+  82  Linux スワップ&lt;br /&gt;/dev/hda3             145         209      522112+  83  Linux&lt;br /&gt;/dev/hda4             210        1958    14048842+   5  拡張領域&lt;br /&gt;/dev/hda5             210        1958    14048811   83  Linux&lt;br /&gt;&lt;br /&gt;Disk /dev/hdb: 32.2 GB, 32212254720 bytes&lt;br /&gt;255 heads, 63 sectors/track, 3916 cylinders&lt;br /&gt;Units = シリンダ数 of 16065 * 512 = 8225280 bytes&lt;br /&gt;&lt;br /&gt;デバイス Boot      Start         End      Blocks   Id  System&lt;br /&gt;/dev/hdb1   *           1        3916    31455238+  8e  Linux LVM&lt;br /&gt;&lt;br /&gt;Disk /dev/hdd: 32.2 GB, 32212254720 bytes&lt;br /&gt;15 heads, 63 sectors/track, 66576 cylinders&lt;br /&gt;Units = シリンダ数 of 945 * 512 = 483840 bytes&lt;br /&gt;&lt;br /&gt;デバイス Boot      Start         End      Blocks   Id  System&lt;br /&gt;/dev/hdd1               1       66576    31457128+  8e  Linux LVM&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; /usr/sbin/vgextend gp00 /dev/hdd1&lt;br /&gt;  Physical volume '/dev/hdd1' is already in volume group 'gp00'&lt;br /&gt;  Unable to add physical volume '/dev/hdd1' to volume group 'gp00'.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; lvextend -L+1024MB gp00/vol00&lt;br /&gt;  Extending logical volume vol00 to 31.00 GB&lt;br /&gt;  Logical volume vol00 successfully resized&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; lvextend -L+1024MB gp00/vol00&lt;br /&gt;  Extending logical volume vol00 to 32.00 GB&lt;br /&gt;  Logical volume vol00 successfully resized&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; lvextend -L+1024MB gp00/vol00&lt;br /&gt;  Extending logical volume vol00 to 33.00 GB&lt;br /&gt;  Logical volume vol00 successfully resized&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; lvextend -L+17GB gp00/vol00&lt;br /&gt;  Extending logical volume vol00 to 50.00 GB&lt;br /&gt;  Logical volume vol00 successfully resized&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; lvextend -L+5GB gp00/vol00&lt;br /&gt;  Extending logical volume vol00 to 55.00 GB&lt;br /&gt;  Logical volume vol00 successfully resized&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt;&lt;br /&gt;　　　　・&lt;br /&gt;　　　　・&lt;br /&gt;　　　　・&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt;&lt;/span&gt; ext2online /dev/mapper/gp00-vol00&lt;br /&gt;ext2online v1.1.18 - 2001/03/18 for EXT2FS 0.5b&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt; df&lt;br /&gt;Filesystem           1K-ブロック    使用   使用可 使用% マウント位置&lt;br /&gt;/dev/hda5             13827976   2910744  10214792  23% /&lt;br /&gt;/dev/hda1               101086     11504     84363  12% /boot&lt;br /&gt;none                    199044         0    199044   0% /dev/shm&lt;br /&gt;/dev/mapper/gp00-vol00&lt;br /&gt;                      56766780     86032  53797612   1% /home&lt;br /&gt;/dev/hda3               505636     11907    467624   3% /var/log&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;[root@paradise ~]#&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-4538344716160339540?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/4538344716160339540/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=4538344716160339540' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/4538344716160339540'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/4538344716160339540'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2007/01/lvm.html' title='オンラインでLVMボリュームを拡張した'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-435824727297807473</id><published>2007-01-13T15:25:00.000+09:00</published><updated>2007-01-13T15:51:39.717+09:00</updated><title type='text'>Fedora DS 起動スクリプト</title><content type='html'>&lt;p&gt;起動スクリプトをファイル名fdsとして、次の内容で作成しました。&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;#!/bin/sh&lt;br /&gt;#&lt;br /&gt;# fds Start/Stop Fedora Directory Server&lt;br /&gt;#&lt;br /&gt;# chkconfig: 345 20 20&lt;br /&gt;# description: Fedora Directory Server&lt;br /&gt;# processname: ns-slapd&lt;br /&gt;&lt;br /&gt;# Source Directory name&lt;br /&gt;if [ -f /etc/sysconfig/fds ]; then&lt;br /&gt;. /etc/sysconfig/fds&lt;br /&gt;else&lt;br /&gt;echo $"Directory name is not defined in /etc/sysconfig/fds"&lt;br /&gt;exit 1&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;SLAPD_PATH=/opt/fedora-ds/&lt;br /&gt;&lt;br /&gt;case "$1" in&lt;br /&gt;start)&lt;br /&gt;$SLAPD_PATH/slapd-$DIRECTORYNAME/start-slapd&lt;br /&gt;$SLAPD_PATH/start-admin&lt;br /&gt;;;&lt;br /&gt;stop)&lt;br /&gt;$SLAPD_PATH/stop-admin&lt;br /&gt;$SLAPD_PATH/slapd-$DIRECTORYNAME/stop-slapd&lt;br /&gt;;;&lt;br /&gt;restart)&lt;br /&gt;$SLAPD_PATH/restart-admin&lt;br /&gt;$SLAPD_PATH/slapd-$DIRECTORYNAME/restart-slapd&lt;br /&gt;;;&lt;br /&gt;*)&lt;br /&gt;echo $"Usage: $0 {start|stop|restart}"&lt;br /&gt;exit 1&lt;br /&gt;esac&lt;br /&gt;&lt;br /&gt;exit $?&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;&lt;br&gt;&lt;br /&gt;ディレクトリサービスの起動スクリプト start-slapdは、作成したディレクトリ名に依存するため、/etc/sysconfig/fdsで設定するようにしてあります。&lt;br /&gt;/etc/sysconfig/fdsに&lt;br /&gt;&lt;/p&gt;&lt;p&gt;DIRECTORYNAME=servername&lt;br /&gt;&lt;/p&gt;&lt;p&gt;のようにディレクトリの識別子を指定してファイルを作成してください。&lt;br /&gt;&lt;/p&gt;&lt;p&gt;またfdsファイルを作成したら、次の手順で、システムに登録を行います。&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;pre&gt;# cp fds /etc/rc.d/init.d/fds&lt;br /&gt;# chmod 755 /etc/rc.d/init.d/fds&lt;br /&gt;# /sbin/chkconfig fds --add&lt;br /&gt;# /sbin/chkconfig fds on&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;これで起動時にFDSのディレクトリサーバと管理サーバを自動起動、自動停止することが可能になります。&lt;br /&gt;&lt;/p&gt;&lt;p&gt;また、手動でFDSの起動、停止をしたいときは、それぞれ次々のコマンドで可能になります。&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;pre&gt;# /sbin/service fds start&lt;br /&gt;# /sbin/service fds stop&lt;br /&gt;# /sbin/service fds restart &lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;注意: FC5ではLDAPを利用する設定にした場合、messagebusサービスより先に、FDSが起動していないと、システムが起動しなくなります。&lt;span style="font-style:italic;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-435824727297807473?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/435824727297807473/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=435824727297807473' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/435824727297807473'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/435824727297807473'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2007/01/fedora-ds.html' title='Fedora DS 起動スクリプト'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-8134870184381540880</id><published>2006-12-30T16:24:00.000+09:00</published><updated>2006-12-30T16:29:28.478+09:00</updated><title type='text'>GPartedでパーティションサイズ変更</title><content type='html'>GPLのパーティション　リサイズツール&lt;br /&gt;&lt;br /&gt;http://gparted.sourceforge.net/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-8134870184381540880?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/8134870184381540880/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=8134870184381540880' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/8134870184381540880'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/8134870184381540880'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/12/gparted.html' title='GPartedでパーティションサイズ変更'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-3470101666621749167</id><published>2006-12-03T23:05:00.000+09:00</published><updated>2006-12-04T00:03:18.466+09:00</updated><title type='text'>ルータの syslog管理</title><content type='html'>LOGを受取るサーバで、下記の設定を追加&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;ファイアフォールの設定&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;# &lt;span style="font-weight: bold;"&gt;vi /etc/sysconfig/iptables&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;# Firewall configuration written by system-config-securitylevel&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;# Manual customization of this file is not recommended.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;*filter&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;:INPUT ACCEPT [0:0]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;:FORWARD ACCEPT [0:0]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;:OUTPUT ACCEPT [0:0]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;:RH-Firewall-1-INPUT - [0:0]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A INPUT -j RH-Firewall-1-INPUT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A FORWARD -j RH-Firewall-1-INPUT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -i lo -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -p 50 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -p 51 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -p udp --dport 5353 -d 224.0.0.251 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 53 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 53 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 25 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 123 -j ACCEPT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204); font-weight: bold;"&gt;#Syslogの受信許可&lt;br /&gt;-A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 514 -j ACCEPT&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;-A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;COMMIT&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# service iptables restart&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:130%;"&gt;ログの保存先を設定&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;# vi /etc/&lt;/span&gt;&lt;span style="font-weight: bold;" class="hilite"&gt;syslog&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;.conf&lt;/span&gt;&lt;br /&gt;&lt;pre style="color: rgb(51, 51, 255);"&gt;#下記の1行を追加&lt;br /&gt;local6.*                                                /var/log/router.log&lt;/pre&gt; &lt;ul&gt;&lt;li&gt;ログのローテート設定&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;pre style="font-weight: bold;"&gt;# vi /etc/logrotate.d/&lt;span class="hilite"&gt;syslog&lt;/span&gt;&lt;/pre&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;#設定追加&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;・・・・/var/log/cron /var/log/router.log {&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;外部のSyslog受信許可&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;pre&gt;&lt;span style="font-weight: bold;"&gt;# vi /etc/sysconfig/syslog&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);" class="hilite"&gt;SYSLOG&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;D_OPTIONS="-r -m 0"&lt;/span&gt;&lt;span style="font-family:Georgia,serif;"&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;KLOGD_OPTIONS="-x"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;&lt;ul&gt;&lt;li&gt;ルータのsyslog出力先変更&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;pre&gt;&lt;span style="font-family:Georgia,serif;"&gt;&lt;br /&gt;&gt; administrator&lt;br /&gt;Password:&lt;br /&gt;# syslog facility local6&lt;br /&gt;#&lt;br /&gt;# save&lt;br /&gt;セーブ中... CONFIG0 終了&lt;br /&gt;#&lt;/span&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-3470101666621749167?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/3470101666621749167/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=3470101666621749167' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/3470101666621749167'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/3470101666621749167'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/12/syslog.html' title='ルータの syslog管理'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-5651803562889749392</id><published>2006-10-22T00:23:00.000+09:00</published><updated>2006-10-22T00:28:11.631+09:00</updated><title type='text'>yumリポジトリ（centosplus）</title><content type='html'>#additional packages that extend functionality of existing packages&lt;br /&gt;[centosplus]&lt;br /&gt;name=CentOS-$releasever - Plus&lt;br /&gt;mirrorlist=http://mirrorlist.centos.org/?release=$releasever&amp;arch=$basearch&amp;amp;repo=centosplus&lt;br /&gt;#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/&lt;br /&gt;gpgcheck=1&lt;br /&gt;enabled=0&lt;br /&gt;gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4&lt;br /&gt;&lt;br /&gt;#contrib - packages by Centos Users&lt;br /&gt;[contrib]&lt;br /&gt;name=CentOS-$releasever - Contrib&lt;br /&gt;mirrorlist=http://mirrorlist.centos.org/?release=$releasever&amp;arch=$basearch&amp;amp;repo=contrib&lt;br /&gt;#baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/&lt;br /&gt;gpgcheck=1&lt;br /&gt;enabled=0&lt;br /&gt;gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-5651803562889749392?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/5651803562889749392/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=5651803562889749392' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5651803562889749392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5651803562889749392'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/10/yumcentosplus.html' title='&lt;CEntOS&gt;yumリポジトリ（centosplus）'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-7832339042305010798</id><published>2006-09-09T22:53:00.000+09:00</published><updated>2006-09-10T00:10:15.120+09:00</updated><title type='text'>Fedora-DS のインストール</title><content type='html'>&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;br /&gt;# &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;/opt/fedora-ds/setup/setup&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;INFO Begin Setup . . .&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;FEDORA(TM) DIRECTORY SERVER&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;This agreement governs the use of Fedora Directory Server,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Administration Server and Management Console (collectively, the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;"SOFTWARE") and any updates to the Software, regardless of the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;delivery mechanism.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;1.  FEDORA DIRECTORY SERVER&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;1.1 LICENSE GRANT.  Fedora Directory Server ("FDS") is a modular&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;application consisting of hundreds of software components and is a&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;collective work under U.S. Copyright Law.  Subject to the following&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;terms, Red Hat, Inc. ("RED HAT") grants to the user ("LICENSEE") a&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;license to this collective work pursuant to the GNU General Public&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;License.  Please note that Administration Server and Management&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Console, which are binary-only code used to configure and administer&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;FDS, are subject to the license terms in Section 2.  The end user&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;license agreement for each component of FDS is located in the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;component's source code. The license terms for the components&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;permit LICENSEE to copy, modify, and redistribute the component, in&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;both source code and binary code forms.  This agreement does not limit&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;LICENSEE's rights under, or grant LICENSEE rights that supersede, the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;license terms of any particular component.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;1.2 LICENSE EXCEPTION.  In addition, as a special exception, Red Hat&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;gives LICENSEE the additional right to link the code of FDS with code&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;not covered under the GNU General Public License ("NON-GPL CODE") and&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;to distribute linked combinations including the two, subject to the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;limitations in this paragraph. Non-GPL Code permitted under this&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;exception must only link to the code of FDS through those well defined&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;interfaces identified in that file named EXCEPTION in the source code&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;files for FDS (the "APPROVED INTERFACES"). The files of Non-GPL Code&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;may instantiate templates or use macros or inline functions from the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Approved Interfaces without causing the resulting work to be covered&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;by the GNU General Public License. Only Red Hat may make changes or&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;additions to the list of Approved Interfaces.  LICENSEE must comply&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;with the GNU General Public License in all respects for all of the FDS&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;code and other code used in conjunction with FDS except the Non-GPL&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Code covered by this exception. If LICENSEE modifies FDS, LICENSEE may&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;extend this exception to its version of FDS, but LICENSEE is not&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;obligated to do so. If LICENSEE does not wish to provide this&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;exception without modification, LICENSEE must delete this exception&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;statement from LICENSEE's version of FDS and license FDS solely under&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;the GPL without exception.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;1.3 INTELLECTUAL PROPERTY RIGHTS.  FDS and each of its components,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;including the source code, documentation, appearance, structure and&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;organization are owned by Red Hat and others and are protected under&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;copyright and other laws.  Title to FDS and any component, or to any&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;copy, modification, or merged portion shall remain with the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;aforementioned, subject to the applicable license.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;2.  ADMINISTRATION SERVER, AND MANAGEMENT CONSOLE&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;2.1 LICENSE GRANT.  Subject to the provisions of this Section 2.1, Red&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Hat hereby grants LICENSEE a non-exclusive, non-transferable,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;worldwide, perpetual, fully paid right (without the right to&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;sublicense) to use, reproduce and distribute Administration Server&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;("ADMIN SERVER"), and Management Console ("CONSOLE") in executable,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;machine-readable form.  LICENSEE must reproduce all copyright and&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;other proprietary notices on such copies.  LICENSEE may only reproduce&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;and distribute Admin Server or Console to another party if the other&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;party agrees in writing to be obligated by the terms and conditions of&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;this Section 2.1.  Except as provided in this Section 2.1, LICENSEE&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;may not modify, copy, transfer or otherwise use Admin Server, or&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Console, and all licenses granted in this Section 2 are automatically&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;terminated if LICENSEE does so.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;2.2 CHANGE IN LICENSING.  It is Red Hat's intent to change the terms&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;of the license granted in this Section 2 to that of an open source&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;license.  If such change is generally announced to the public,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;LICENSEE will have the option to elect to have Admin Server and&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Console governed by the terms of such open source license.  If&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;LICENSEE does not make such election, the terms of this Agreement will&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;continue to govern LICENSEE's use of Admin Server and Console.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;3.  LIMITED WARRANTY.  Except as specifically stated in this Section 3&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;or a license for a particular component, TO THE MAXIMUM EXTENT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;PERMITTED UNDER APPLICABLE LAW, THE SOFTWARE AND THE COMPONENTS ARE&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;PROVIDED AND LICENSED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESSED&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;OR IMPLIED, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;NON-INFRINGEMENT OR FITNESS FOR A PARTICULAR PURPOSE.  Red Hat does&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;not warrant that the functions contained in the Software will meet&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;LICENSEE's requirements or that the operation of the Software will be&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;entirely error free or appear precisely as described in the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;accompanying documentation.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;4.  LIMITATION OF REMEDIES AND LIABILITY. TO THE MAXIMUM EXTENT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;PERMITTED BY APPLICABLE LAW, RED HAT WILL NOT BE LIABLE TO LICENSEE&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;FOR ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS OR&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;LOST SAVINGS ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;EVEN IF RED HAT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;5.  EXPORT CONTROL.  As required by U.S. law, LICENSEE represents and&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;warrants that it: (a) understands that the Software is subject to&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;export controls under the U.S. Commerce Department's Export&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Administration Regulations ("EAR"); (b) is not located in a prohibited&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;destination country under the EAR or U.S. sanctions regulations&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria); (c)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;will not export, re-export, or transfer the Software to any prohibited&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;destination, entity, or individual without the necessary export&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;license(s) or authorizations(s) from the U.S.  Government; (d) will&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;not use or transfer the Software for use in any sensitive nuclear,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;chemical or biological weapons, or missile technology end-uses unless&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;authorized by the U.S. Government by regulation or specific license;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;(e) understands and agrees that if it is in the United States and&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;exports or transfers the Software to eligible end users, it will, as&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;required by EAR Section 740.17(e), submit semi-annual reports to the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Commerce Department's Bureau of Industry &amp; Security (BIS), which&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;include the name and address (including country) of each transferee;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;and (f) understands that countries other than the United States may&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;restrict the import, use, or export of encryption products and that it&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;shall be solely responsible for compliance with any such import, use,&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;or export restrictions.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;6.  THIRD PARTY PROGRAMS. Red Hat may distribute third party software&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;programs with the Software that are not part of the Software.  These&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;third party programs are subject to their own license terms.  The&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;license terms either accompany the programs or can be viewed at&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;http://www.redhat.com/licenses/.  If LICENSEE does not agree to abide&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;by the applicable license terms for such programs, then LICENSEE may&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;not install them.  If LICENSEE wishes to install the programs on more&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;than one system or transfer the programs to another party, then&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;LICENSEE must contact the licensor of the programs.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;7.  GENERAL.  If any provision of this agreement is held to be&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;unenforceable, that shall not affect the enforceability of the&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;remaining provisions.  This agreement shall be governed by the laws of&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;the State of North Carolina and of the United States, without regard&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;to any conflict of laws provisions, except that the United Nations&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Convention on the International Sale of Goods shall not apply.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Do you accept the license terms? (yes/no)  &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;yes&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt; =======================================================================&lt;br /&gt;                       Fedora Directory Server 1.0.2&lt;br /&gt;=======================================================================&lt;br /&gt;&lt;br /&gt;The Fedora Directory Server is subject to the terms detailed in the&lt;br /&gt;license agreement file called LICENSE.txt.&lt;br /&gt;&lt;br /&gt;Late-breaking news and information on the Fedora Directory Server is&lt;br /&gt;available at the following location:&lt;br /&gt;&lt;br /&gt;    http://directory.fedora.redhat.com&lt;br /&gt;&lt;br /&gt;Continue? (yes/no)&lt;span style="color: rgb(102, 0, 204);"&gt; &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;yes&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Fedora Directory Server system tuning analysis version 04-APRIL-2005.&lt;br /&gt;&lt;br /&gt;NOTICE : System is i686-unknown-linux2.6.9-42.0.2.EL (1 processor).&lt;br /&gt;&lt;br /&gt;WARNING: 293MB of physical memory is available on the system. 1024MB is recommended for best performance on large production system.&lt;br /&gt;&lt;br /&gt;NOTICE : The net.ipv4.tcp_keepalive_time is set to 7200000 milliseconds&lt;br /&gt;(120 minutes).  This may cause temporary server congestion from lost&lt;br /&gt;client connections.&lt;br /&gt;&lt;br /&gt;WARNING: There are only 1024 file descriptors (hard limit) available, which&lt;br /&gt;limit the number of simultaneous connections.&lt;br /&gt;&lt;br /&gt;WARNING: There are only 1024 file descriptors (soft limit) available, which&lt;br /&gt;limit the number of simultaneous connections.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Continue? (yes/no)&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt; yes&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Please select the install mode:&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;  1 - Express - minimal questions&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;  2 - Typical - some customization (default)&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;  3 - Custom - lots of customization&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Please select 1, 2, or 3 (default: 2)&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt; 2&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Hostname to use (default: localhost.localdomain)&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt; host.hoge.com&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Server user ID to use (default: nobody)&lt;br /&gt;&lt;br /&gt;Server group ID to use (default: nobody)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                                     Fedora Project&lt;br /&gt;                          Directory Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Fedora server information is stored in the Fedora configuration&lt;br /&gt;directory server, which you may have already set up.  If so, you&lt;br /&gt;should configure this server to be managed by the configuration&lt;br /&gt;server.  To do so, the following information about the configuration&lt;br /&gt;server is required: the fully qualified host name of the form&lt;br /&gt;&lt;hostname&gt;.&lt;domainname&gt;(e.g. hostname.domain.com), the port number,&lt;br /&gt;the suffix, and the DN and password of a user having permission to&lt;br /&gt;write the configuration information, usually the Fedora&lt;br /&gt;configuration directory administrator.&lt;br /&gt;&lt;br /&gt;If you want to install this software as a standalone server, or if you&lt;br /&gt;want this instance to serve as your Fedora configuration directory&lt;br /&gt;server, press Enter.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Do you want to register this software with an existing&lt;br /&gt;Fedora configuration directory server? [No]:&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;no&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;br /&gt;                                     Fedora Project&lt;br /&gt;                          Directory Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;If you already have a directory server you want to use to store your&lt;br /&gt;data, such as user and group information, answer Yes to the following&lt;br /&gt;question.  You will be prompted for the host, port, suffix, and bind&lt;br /&gt;DN to use for that directory server.&lt;br /&gt;&lt;br /&gt;If you want this directory server to store your data, answer No.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Do you want to use another directory to store your data? [No]: &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;no&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;br /&gt;                                     Fedora Project&lt;br /&gt;                          Directory Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;The standard directory server network port number is 389.  However, if&lt;br /&gt;you are not logged as the superuser, or port 389 is in use, the&lt;br /&gt;default value will be a random unused port number greater than 1024.&lt;br /&gt;If you want to use port 389, make sure that you are logged in as the&lt;br /&gt;superuser, that port 389 is not in use, and that you run the admin&lt;br /&gt;server as the superuser.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Directory server network port [389]: &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;389&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;br /&gt;                                     Fedora Project&lt;br /&gt;                          Directory Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Each instance of a directory server requires a unique identifier.&lt;br /&gt;Press Enter to accept the default, or type in another name and press&lt;br /&gt;Enter.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Directory server identifier [host]:&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt; host&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;                                     Fedora Project&lt;br /&gt;                          Directory Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Please enter the administrator ID for the Fedora configuration&lt;br /&gt;directory server.  This is the ID typically used to log in to the&lt;br /&gt;console.  You will also be prompted for the password.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Fedora configuration directory server&lt;br /&gt;administrator ID [admin]: &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;admin&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Password: &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;xxxx&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Password (again): &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;xxxx&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;br /&gt;                                     Fedora Project&lt;br /&gt;                          Directory Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;The suffix is the root of your directory tree.  You may have more than&lt;br /&gt;one suffix.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Suffix [dc=hoge, dc=com]: &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;                                     Fedora Project&lt;br /&gt;                          Directory Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Certain directory server operations require an administrative user.&lt;br /&gt;This user is referred to as the Directory Manager and typically has a&lt;br /&gt;bind Distinguished Name (DN) of cn=Directory Manager.  Press Enter to&lt;br /&gt;accept the default value, or enter another DN.  In either case, you&lt;br /&gt;will be prompted for the password for this user.  The password must&lt;br /&gt;be at least 8 characters long.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Directory Manager DN [cn=Directory Manager]:&lt;br /&gt;Password:  &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;xxxxx&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;Password (again): &lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;xxxxx&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;br /&gt;                                     Fedora Project&lt;br /&gt;                          Directory Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;The Administration Domain is a part of the configuration directory&lt;br /&gt;server used to store information about Fedora software.  If you are&lt;br /&gt;managing multiple software releases at the same time, or managing&lt;br /&gt;information about multiple domains, you may use the Administration&lt;br /&gt;Domain to keep them separate.&lt;br /&gt;&lt;br /&gt;If you are not using administrative domains, press Enter to select the&lt;br /&gt;default.  Otherwise, enter some descriptive, unique name for the&lt;br /&gt;administration domain, such as the name of the organization responsible&lt;br /&gt;for managing the domain.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Administration Domain [hoge.com]: &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;hoge.com&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;br /&gt;                                     Fedora Project&lt;br /&gt;                       Administration Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;The Administration Server is separate from any of your application&lt;br /&gt;servers since it listens to a different port and access to it is&lt;br /&gt;restricted.&lt;br /&gt;&lt;br /&gt;Pick a port number between 1024 and 65535 to run your Administration&lt;br /&gt;Server on. You should NOT use a port number which you plan to&lt;br /&gt;run an application server on, rather, select a number which you&lt;br /&gt;will remember and which will not be used for anything else.&lt;br /&gt;&lt;br /&gt;The default in brackets was randomly selected from the available&lt;br /&gt;ports on your system. To accept the default, press return.&lt;br /&gt;&lt;br /&gt;Administration port [37594]: &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;37594&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;br /&gt;&lt;br /&gt;                                     Fedora Project&lt;br /&gt;                       Administration Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;The Administration Server program runs as a certain user on your&lt;br /&gt;system. This user should be different than the one which your&lt;br /&gt;application servers run as. Only the user you select will be&lt;br /&gt;able to write to your configuration files. If you run the&lt;br /&gt;Administration Server as "root", you will be able to use the Server&lt;br /&gt;Administration screen to start and stop your application servers.&lt;br /&gt;&lt;br /&gt;Run Administration Server as [root]: &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;                                     Fedora Project&lt;br /&gt;                       Administration Installation/Uninstallation&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;The Administration Server runs on the Apache web server. Please provide the&lt;br /&gt;directory where the Apache binary (httpd or httpd.worker) may be found. The&lt;br /&gt;Administration Server needs an Apache compiled with the worker model.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Apache Directory [/usr/sbin/]:&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;[slapd-host]: starting up server ...&lt;br /&gt;[slapd-host]:       Fedora-Directory/1.0.2 B2006.060.1928&lt;br /&gt;[slapd-host]:       host.hoge.com:389 (/opt/fedora-ds/slapd-host)&lt;br /&gt;[slapd-host]:&lt;br /&gt;[slapd-host]: [09/Sep/2006:23:30:36 +0900] - Fedora-Directory/1.0.2 B2006.060.1928 starting up&lt;br /&gt;[slapd-host]: [09/Sep/2006:23:30:44 +0900] - slapd started.  Listening on All Interfaces port 389 for LDAP requests&lt;br /&gt;Your new directory server has been started.&lt;br /&gt;Created new Directory Server&lt;br /&gt;Start Slapd Starting Slapd server configuration.&lt;br /&gt;Success Slapd Added Directory Server information to Configuration Server.&lt;br /&gt;Configuring Administration Server...&lt;br /&gt;Setting up Administration Server Instance...&lt;br /&gt;Configuring Administration Tasks in Directory Server...&lt;br /&gt;Configuring Global Parameters in Directory Server...&lt;br /&gt;&lt;br /&gt;You can now use the console.  Here is the command to use to start the console:&lt;br /&gt;cd /opt/fedora-ds&lt;br /&gt;./startconsole -u admin -a http://host.hoge.com:37594/&lt;br /&gt;&lt;br /&gt;INFO Finished with setup, logfile is setup/setup.log&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;#&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-7832339042305010798?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/7832339042305010798/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=7832339042305010798' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/7832339042305010798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/7832339042305010798'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/09/fedora-ds.html' title='Fedora-DS のインストール'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-2850427367128047112</id><published>2006-09-01T03:09:00.000+09:00</published><updated>2006-09-01T03:11:10.064+09:00</updated><title type='text'>&lt;CEntOS&gt;yumリポジトリ（Java関連パッケージ）</title><content type='html'>&lt;span style="color: rgb(0, 0, 153);"&gt;# &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;rpm --import http://www.jpackage.org/jpackage.asc&lt;/span&gt;&lt;br /&gt;# &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;cat /etc/yum.repos.d/jpackage.repo&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;[jpackage-generic]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;name=JPackage (free), generic&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;mirrorlist=http://www.jpackage.org/jpackage_generic.txt&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;failovermethod=priority&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;gpgcheck=1&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;gpgkey=http://www.jpackage.org/jpackage.asc&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;enabled=1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;[jpackage-generic-nonfree]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;name=JPackage (non-free), generic&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;mirrorlist=http://www.jpackage.org/jpackage_generic_nonfree.txt&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;failovermethod=priority&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;gpgcheck=1&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;gpgkey=http://www.jpackage.org/jpackage.asc&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;enabled=0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;[jpackage16-rhel40]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;name=JPackage 1.6 for Red Hat Enterprise Linux 4&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;baseurl=http://mirrors.dotsrc.org/jpackage/1.6/redhat-el-4.0/free/&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;gpgcheck=1&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;[root@osakaweb ~]# &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-2850427367128047112?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/2850427367128047112/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=2850427367128047112' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/2850427367128047112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/2850427367128047112'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/09/yumjava.html' title='&amp;lt;CEntOS&amp;gt;yumリポジトリ（Java関連パッケージ）'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-5960341163139592759</id><published>2006-09-01T02:54:00.000+09:00</published><updated>2006-09-01T03:01:39.200+09:00</updated><title type='text'>&lt;CEntOS&gt;DAG：yum追加リポジトリ</title><content type='html'>&lt;pre class="commandline"&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="dag"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;#&lt;/span&gt;&lt;span&gt; rpm --import http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-size:100%;" &gt;# &lt;span style="color: rgb(0, 0, 0);"&gt;cat /etc/yum.repos.d/CentOS-Base.repo&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;br /&gt;[dag]&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;name=Dag RPM Repository for Fedora Core&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;baseurl=http://ftp.riken.jp/Linux/dag/fedora/el$releasever/en/$basearch/dag&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;[dag]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;name=Dag RPM Repository for Red Hat Enterprise Linux&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;baseurl=http://ftp.riken.jp/Linux/dag/redhat/el$releasever/en/$basearch/dag&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;[dag]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;name=Dag RPM Repository for older Red Hat Linux&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;baseurl=http://ftp.riken.jp/Linux/dag/redhat/el$releasever/en/$basearch/dag&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;# &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-5960341163139592759?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/5960341163139592759/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=5960341163139592759' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5960341163139592759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5960341163139592759'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/09/centosyum.html' title='&amp;lt;CEntOS&amp;gt;DAG：yum追加リポジトリ'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-4388391305757167578</id><published>2006-08-27T03:07:00.000+09:00</published><updated>2006-08-27T03:14:31.091+09:00</updated><title type='text'>リバースプロキシpound</title><content type='html'>&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;wget http://www.invoca.ch/pub/packages/pound/pound-2.1-1.src.rpm&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;rpm -ivh pound-2.1-1.src.rpm&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;&lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;vi pound.spec&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;%define version 2.1&lt;br /&gt;%define rpmrelease 1&lt;br /&gt;# betarelease is either 0 or something like b1&lt;br /&gt;%define betarelease 0&lt;br /&gt;# special features&lt;br /&gt;%define enablemsdav &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;1     ←（0から1へ変更）&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;%define distname Pound&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;～&lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;～&lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;　以下省略　～&lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;～&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;cd  /usr/src/redhat/SPECS&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;rpmbuild -ba pound.spec&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="color: rgb(0, 0, 0); font-weight: bold;"&gt;cd /usr/src/redhat/RPMS/i386/&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;ls -la&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;合計 112&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;drwxr-xr-x  2 root root  4096  8月 20 23:22 .&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;drwxr-xr-x  8 root root  4096  8月 18 16:08 ..&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;-rw-r--r--  1 root root 70192  8月 20 23:22 pound-2.1-1.i386.rpm&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;-rw-r--r--  1 root root 11442  8月 20 23:22 pound-debuginfo-2.1-1.i386.rpm&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;rpm -ivh pound-2.1-1.i386.rpm&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;cd /etc/pound&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;# &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;vi /etc/pound/pound.cfg&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;Group "nobody"&lt;br /&gt;User "nobody"&lt;br /&gt;RootJail "/usr/share/empty"&lt;br /&gt;&lt;br /&gt;ListenHTTP&lt;br /&gt;&lt;br /&gt;  address 192.168.0.12&lt;br /&gt;  Port 80&lt;br /&gt;&lt;br /&gt;  Service&lt;br /&gt;    URL "/.*"&lt;br /&gt;    BackEnd&lt;br /&gt;      address 192.168.0.12&lt;br /&gt;      Port 8081&lt;br /&gt;      Priority 1&lt;br /&gt;    End&lt;br /&gt;    Session&lt;br /&gt;      Type BASIC&lt;br /&gt;      TTL 300&lt;br /&gt;    End&lt;br /&gt;  End&lt;br /&gt;End&lt;br /&gt;&lt;br /&gt;ListenHTTPS&lt;br /&gt;  address 192.168.0.12&lt;br /&gt;  Port 443&lt;br /&gt;  Cert "/etc/pound/cert.pem"&lt;br /&gt;  xHTTP   1&lt;br /&gt;  WebDAV  1&lt;br /&gt;&lt;br /&gt;  Service&lt;br /&gt;    URL "/WebDav.*"&lt;br /&gt;    BackEnd&lt;br /&gt;      address 192.168.0.11&lt;br /&gt;      Port 80&lt;br /&gt;      Priority 1&lt;br /&gt;#      WebDAV 1&lt;br /&gt;    End&lt;br /&gt;    Session&lt;br /&gt;      Type BASIC&lt;br /&gt;      TTL 300&lt;br /&gt;    End&lt;br /&gt;  End&lt;br /&gt;&lt;br /&gt;  Service&lt;br /&gt;    URL "/mokuhyo.*"&lt;br /&gt;    BackEnd&lt;br /&gt;      address 192.168.0.31&lt;br /&gt;      Port 80&lt;br /&gt;      Priority 1&lt;br /&gt;    End&lt;br /&gt;    Session&lt;br /&gt;      Type BASIC&lt;br /&gt;      TTL 300&lt;br /&gt;    End&lt;br /&gt;  End&lt;br /&gt;&lt;br /&gt;  Service&lt;br /&gt;    URL "/.*"&lt;br /&gt;    BackEnd&lt;br /&gt;      address 192.168.0.12&lt;br /&gt;      Port 8081&lt;br /&gt;      Priority 1&lt;br /&gt;    End&lt;br /&gt;    Session&lt;br /&gt;      Type BASIC&lt;br /&gt;      TTL 300&lt;br /&gt;    End&lt;br /&gt;  End&lt;br /&gt;&lt;br /&gt;End&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# &lt;span style="color: rgb(0, 0, 0);"&gt;openssl req -x509 -newkey rsa:1024 -keyout cert.pem -out cert.pem -days 3650 -nodes&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;Generating a 1024 bit RSA private key&lt;br /&gt;....................................................................++++++&lt;br /&gt;........++++++&lt;br /&gt;writing new private key to 'cert.pem'&lt;br /&gt;-----&lt;br /&gt;You are about to be asked to enter information that will be incorporated&lt;br /&gt;into your certificate request.&lt;br /&gt;What you are about to enter is what is called a Distinguished Name or a DN.&lt;br /&gt;There are quite a few fields but you can leave some blank&lt;br /&gt;For some fields there will be a default value,&lt;br /&gt;If you enter '.', the field will be left blank.&lt;br /&gt;-----&lt;br /&gt;Country Name (2 letter code) [GB]:&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;JP&lt;/span&gt;&lt;br /&gt;State or Province Name (full name) [Berkshire]:&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;Osaka&lt;/span&gt;&lt;br /&gt;Locality Name (eg, city) [Newbury]:&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;Osaka&lt;/span&gt;&lt;br /&gt;Organization Name (eg, company) [My Company Ltd]:&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;CompanyName&lt;/span&gt;&lt;br /&gt;Organizational Unit Name (eg, section) []:&lt;br /&gt;Common Name (eg, your name or your server's hostname) []:&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;homepage.demo&lt;/span&gt;&lt;br /&gt;Email Address []:&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;info@&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;homepage.demo&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 102);"&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-4388391305757167578?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/4388391305757167578/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=4388391305757167578' title='53 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/4388391305757167578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/4388391305757167578'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/08/pound.html' title='リバースプロキシpound'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>53</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-5689870128498299189</id><published>2006-08-27T02:41:00.000+09:00</published><updated>2006-08-27T02:43:07.499+09:00</updated><title type='text'>MySQL4 ダンプしてデータ移行</title><content type='html'># mysqldump --quick db_name -u root -p |gzip &gt; dumpdata.gz&lt;br /&gt;&lt;br /&gt;（この例で作成されるファイルは圧縮されています。）データベースの内容が格納されたファイルを移動先のマシンに転送し、そのマシン上で以下のコマンドを実行します。&lt;br /&gt;&lt;br /&gt;# mysqladmin create db_name&lt;br /&gt;# gunzip &lt; dumpdata.gz | mysql  db_name&lt;br /&gt;&lt;br /&gt;&lt;a href="javascript:void(0)" onclick="return false;"&gt;&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-5689870128498299189?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/5689870128498299189/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=5689870128498299189' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5689870128498299189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5689870128498299189'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/08/mysql4.html' title='MySQL4 ダンプしてデータ移行'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-283583619985547104</id><published>2006-08-27T02:38:00.000+09:00</published><updated>2006-08-27T02:39:08.700+09:00</updated><title type='text'>ディスク消去方法</title><content type='html'>ハードディスクの先頭セクタ1024kbをゼロ書き込みする&lt;br /&gt;MBR消去などが出来る&lt;br /&gt;&lt;br /&gt;dd if=/dev/zero of=/dev/sda1 bs=1024k&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-283583619985547104?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/283583619985547104/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=283583619985547104' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/283583619985547104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/283583619985547104'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/08/blog-post.html' title='ディスク消去方法'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2551252367558873613.post-5981883845581356592</id><published>2006-08-27T02:35:00.000+09:00</published><updated>2006-08-27T02:38:13.118+09:00</updated><title type='text'>ハードディスク消去</title><content type='html'>２回ランダムに書き込みをする &lt;h3 class="post-title"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: normal;"&gt;s&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: normal;"&gt;hred -n 2 -v /dev/hda&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h3&gt;&lt;pre class="input"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2551252367558873613-5981883845581356592?l=soft6.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soft6.blogspot.com/feeds/5981883845581356592/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2551252367558873613&amp;postID=5981883845581356592' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5981883845581356592'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2551252367558873613/posts/default/5981883845581356592'/><link rel='alternate' type='text/html' href='http://soft6.blogspot.com/2006/08/shred.html' title='ハードディスク消去'/><author><name>やまちゃん</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_q_QvD0jy2mw/SYHctgvkFcI/AAAAAAAAACk/cZhW_wKVx6o/S220/moss.jpg'/></author><thr:total>0</thr:total></entry></feed>
