Changes between Version 1 and Version 2 of jazz/13-01-30


Ignore:
Timestamp:
Jan 30, 2013, 4:33:55 PM (12 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified jazz/13-01-30

    v1 v2  
    99~$ pdfimages -j 'Cool Pix of 2011.pdf' cool2011
    1010}}}
     11
     12== Apache !BigTop ==
     13
     14 * [參考] [https://cwiki.apache.org/confluence/display/BIGTOP/How+to+install+Hadoop+distribution+from+Bigtop+0.5.0 How to install Hadoop distribution from Bigtop 0.5.0]
     15 * [測試環境] http://easycloud.nchc.org.tw
     16{{{
     17root@vm36:~# lsb_release -a
     18No LSB modules are available.
     19Distributor ID: Ubuntu
     20Description:    Ubuntu 12.04.1 LTS
     21Release:        12.04
     22Codename:       precise
     23root@vm36:~# uname -a
     24Linux vm36 3.2.0-29-generic #46-Ubuntu SMP Fri Jul 27 17:03:23 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
     25}}}
     26 * [注意] 官方說__'''只有支援 64 位元版本'''__
     27 * [步驟]
     28{{{
     29#!sh
     30### 首先,在 EasyCloud 的 VM 切換成 root 會比較方便。
     31jazzwang.tw@vm36:~$ su -
     32### 其次,加入 BigTop 的套件金鑰,跟套件庫來源
     33root@vm36:~# wget -O- http://archive.apache.org/dist/bigtop/bigtop-0.5.0/repos/GPG-KEY-bigtop | apt-key add -
     34root@vm36:~# wget -O /etc/apt/sources.list.d/bigtop-0.5.0.list http://archive.apache.org/dist/bigtop/bigtop-0.5.0/repos/`lsb_release --codename --short`/bigtop.list
     35### 更新套件庫
     36root@vm36:~# apt-get update
     37}}}