Getting the Source
Note that MiBox has been verified and tested on Ubuntu 10.04 (LTS) server with 32-bit. But, please check yourself out in the system different from the distribution just mentioned if errors or warnings are shown when running this solution on it. Or, look at Community to try to seek for help.
Downloading the Source
Before getting the MiBox code base, the first thing you need to do is install Repo tool, just because it's very convenient to manipulate and manage multiple git repositories. Additionally, another thing you also care is create a bin/
directory beneath your home directory if not existing yet, then put this path on PATH
.
mkdir /path/to/bin
PATH=/path/to/bin:$PATH
or
echo "export PATH=/path/to/bin:\$PATH" >> ~/.bashrc
source ~/.bashrc
curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > /path/to/bin/repo
chmod a+x /path/to/bin/repo
Notice that go directly into here to get Repo if the link above doesn't work.
Then, create a working directory, named mci
, under your home directory. And, get into it.
mkdir mci
cd mci
Finally, just issue the following instructions to pull down the whole source from Github.
repo init -u https://github.com/miing/mci_manifest
repo sync
Author
Samuel Mi samuel.miing@gmail.com from Miing.org