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

    <dc:language>ja</dc:language>
    <dc:date>2012-08-14T22:23:19+09:00</dc:date>
    <utime>1344950599</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/41.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/40.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/39.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/38.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/37.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/36.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/35.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/34.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/33.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tokujiro/pages/32.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/41.html">
    <title>Android 開発環境構築</title>
    <link>https://w.atwiki.jp/tokujiro/pages/41.html</link>
    <description>
          </description>
    <dc:date>2012-08-14T22:23:19+09:00</dc:date>
    <utime>1344950599</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/40.html">
    <title>EGit設定</title>
    <link>https://w.atwiki.jp/tokujiro/pages/40.html</link>
    <description>
      Eclipse上で新規プロジェクトを作成しておきます。

ローカル上にリポジトリを新規作成
 プロジェクトを右クリック→チーム→プロジェクトの共用→リポジトリー・タイプ「Git」→次へ
 リポジトリー→作成
 親ディレクトリー「x:\git\repos」
 名前「sample-porject」
 →完了
 →完了

コミット
 パッケージエクスプローラから管理対象を右クリック→チーム→追加
 パッケージエクスプローラから管理対象を右クリック→チーム→コミット

(clientから)新規リポジトリ(samples-project)の追加
 $ cd /git/repos/gitolite-admin/conf
 $ vi gitolite.conf
 ---- 編集前 ----
 repo gitolite-admin
      RW+ = test-user
 repo testing
      RW+ = @all
 ---- 編集後 ----
 @developer = dev1 dev2
 @tester = tester1 tester2
 @admin = test-user
 repo gitolite-admin
      RW+ = @admin
 repo testing
      R   = @all
      RW+ = @admin
 repo samples-project
      R   = @tester
      RW  = @developer
      RW+ = @admin
 ---- ここまで ----
 $ git add -A
 $ git commit
 $ git push origin master
 (サーバへの変更通知時にサーバ側でsamples-projectが初期化される)
 remote: creating samples-project...
 remote: Initialized empty Git repository in ...


サーバに通知
 パッケージエクスプローラからプロジェクトを右クリック→チーム→リモート→プッシュ
 URI ssh://gitolite@xx.xx.xx    </description>
    <dc:date>2012-08-13T22:21:18+09:00</dc:date>
    <utime>1344864078</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/39.html">
    <title>Gitインストール</title>
    <link>https://w.atwiki.jp/tokujiro/pages/39.html</link>
    <description>
      WindowsGitClientダウンロード
 http://code.google.com/p/msysgit/downloads/list
 Git-1.7.11-preview20120710.exe

WindowsGitClientをインストールします。
 [実行][はい][Next][Next][Next][Next][Next]
 (Use Git Bash only)[Next]
 (Checkout Windows-style, commit Unix-style line endings)[Next]
 [Finish]

WindowsGitClientを実行します。
 「Git Bash」アイコンのプロパティを開き作業フォルダーをD:\に変更
 「Git Bash」アイコンをダブルクリック

ClientのGit設定を実施します。
 $ git config --global user.name &quot;xxxx xxxx&quot;
 $ git config --global user.email &quot;xxxx@xxxx.xxx&quot;
 （ホームディレクトリ(C:/Users/xxx)に.gitconfigが作成される） 

Clientで公開鍵/秘密鍵を作成します。
 $ ssh-keygen -t rsa -C &quot;xxxxxx@gmail.com&quot;
 Enter file in which to save the key (//.ssh/id_rsa): /c/Users/xxxx/.ssh/test-user
 Enter passphrase (empty for no passphrase): （何も入力せず［Enter］キーを押す）
 Enter same passphrase again:（何も入力せず［Enter］キーを押す）
 （ホームディレクトリ(C:/Users/xxx/.ssh/)に公開鍵/秘密鍵ファイルが作成される）
 test-user     ... 秘密鍵
 test-user.pub ... 公開鍵

サーバ接続情報を作成します。
 C:\Users\xxxxxx\.ssh\config を新規作成
 ---- 中身 ----
 host server01
  u    </description>
    <dc:date>2012-08-09T13:20:06+09:00</dc:date>
    <utime>1344486006</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/38.html">
    <title>SELinux</title>
    <link>https://w.atwiki.jp/tokujiro/pages/38.html</link>
    <description>
          </description>
    <dc:date>2012-08-05T21:00:37+09:00</dc:date>
    <utime>1344168037</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/37.html">
    <title>パケットフィルタリング設定</title>
    <link>https://w.atwiki.jp/tokujiro/pages/37.html</link>
    <description>
          </description>
    <dc:date>2012-08-04T23:13:04+09:00</dc:date>
    <utime>1344089584</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/36.html">
    <title>VMWareToolsインストール</title>
    <link>https://w.atwiki.jp/tokujiro/pages/36.html</link>
    <description>
          </description>
    <dc:date>2012-07-25T23:24:11+09:00</dc:date>
    <utime>1343226251</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/35.html">
    <title>基本ツールインストール</title>
    <link>https://w.atwiki.jp/tokujiro/pages/35.html</link>
    <description>
      基本ツールの最新バージョンを確認。
 # yum --enablerepo=rpmforge,rpmforge-extras,epel,remi,elrepo,elrepo-extras info make

基本ツールをインストールします。
 # yum -y install make
 # yum -y install gcc
 # yum -y install wget
 # yum -y install iptstate    </description>
    <dc:date>2012-08-13T20:22:48+09:00</dc:date>
    <utime>1344856968</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/34.html">
    <title>VMWarePlayer設定</title>
    <link>https://w.atwiki.jp/tokujiro/pages/34.html</link>
    <description>
      http://homepage2.nifty.com/protocol/virtual/vmware/VMwareNetworking/entori/2011/3/1_%286%29_DHCP.html

VMwareToolsをダウンロードします。
 VMWarePlayerを起動後
 「ファイル」→「Playerの環境設定」→「今すぐすべてのコンポーネントをダウンロード」
  (各種ゲストOS用のVMwareToolsがダウンロードされる)

仮想OS用のNATを設定します。
(ホストOSがWindowsの場合で、ゲストOSからNAT経由でInternetへ接続できるようにするには Subnet に 192.168.137.0 を割り当てます)
 「コントロールパネル」→「ネットワークと共有センター」→「VMWareNetworkAdapter VMnet8」
 (ゲスト用OSのNAT設定はVMnet8、Bridge設定はVMnet1)
 →「プロパティ」→「TCP/IPv4」→「プロパティ」
   IP Address  192.168.137.1
   Subnet Mask 255.255.255.0
 「OK]
 「閉じる」
 「閉じる」

DHCP設定ファイルを編集します。
 c:\ProgramData\VMware\vmnetdhcp.conf
 # Virtual ethernet segment 8 の
 192.168.xxx を 192.168.137 に編集
 # Virtual ethernet segment 8
 subnet 192.168.137.0 netmask 255.255.255.0 {
 range 192.168.137.128 192.168.137.254;            # default allows up to 125 VM&#039;s
 option broadcast-address 192.168.137.255;
 option domain-name-servers 192.168.137.2;
 option domain-name &quot;localdomain&quot;;
 option netbios-name-servers 192.168.1    </description>
    <dc:date>2012-07-25T08:51:27+09:00</dc:date>
    <utime>1343173887</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/33.html">
    <title>VMWarePlayerインストール</title>
    <link>https://w.atwiki.jp/tokujiro/pages/33.html</link>
    <description>
          </description>
    <dc:date>2012-07-24T22:30:12+09:00</dc:date>
    <utime>1343136612</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tokujiro/pages/32.html">
    <title>VMWareServer ゲストOSからInternet接続</title>
    <link>https://w.atwiki.jp/tokujiro/pages/32.html</link>
    <description>
          </description>
    <dc:date>2012-07-19T13:15:16+09:00</dc:date>
    <utime>1342671316</utime>
  </item>
  </rdf:RDF>
