| 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 | {{{ |
| 17 | root@vm36:~# lsb_release -a |
| 18 | No LSB modules are available. |
| 19 | Distributor ID: Ubuntu |
| 20 | Description: Ubuntu 12.04.1 LTS |
| 21 | Release: 12.04 |
| 22 | Codename: precise |
| 23 | root@vm36:~# uname -a |
| 24 | Linux 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 會比較方便。 |
| 31 | jazzwang.tw@vm36:~$ su - |
| 32 | ### 其次,加入 BigTop 的套件金鑰,跟套件庫來源 |
| 33 | root@vm36:~# wget -O- http://archive.apache.org/dist/bigtop/bigtop-0.5.0/repos/GPG-KEY-bigtop | apt-key add - |
| 34 | root@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 | ### 更新套件庫 |
| 36 | root@vm36:~# apt-get update |
| 37 | }}} |