Prepare Build VM - ihipop/winsun_mininas_v1 GitHub Wiki

Install debian 7.9 from CD

If you are using virtualbox, be sure to allocate all cpu (cores) to your vm BEFORE installing the debian system. Failing to do so may result in the guest machine has only one cpu and can not be modified any more.

Install sudo

sudo is required for the build script. It is also recommended to use sudo other than su to fulfill privileged tasks.

# su
# apt-get install sudo
# adduser <username> sudo

restart the system

Install other tools

# remove CD-ROM in apt source file.
sudo nano /etc/apt/sources.list

# install git and vim
sudo apt-get -y install git vim xclip chromium-browser

Configure git and github

git config --global user.name "yourname"
git config --global user.email "[email protected]"

# check the result
git config -l
ssh-keygen -t rsa -b 4096 -C “[email protected]"
...
...
xclip -sel clip < ~/.ssh/id_rsa.pub

Paste ssh key to your github account.

Test your ssh key set up.

Checkout Build Script

If you are a user, simply clone this repo.

If you are a developer, you should fork this repo and clone your own.

git clone [email protected]:matianfu/winsun_mininas_v1.git

Import Intel PR29 CD

cd winsun_mininas_v1
mkdir disc
cd disc

# do something here to import disc, scp or wget preferred.

Install dependency

cd winsun_mininas_v1
./depends.sh
⚠️ **GitHub.com Fallback** ⚠️