Difference between revisions of "Getting Started with BPI-W2"
(→Ubuntu) |
|||
Line 13: | Line 13: | ||
===Build your own image on W2=== | ===Build your own image on W2=== | ||
====Ubuntu==== | ====Ubuntu==== | ||
− | =====How to make and run the 64-bit ubuntu 16.04 on SD card 2018-4-28===== | + | =====How to make and run the 64-bit ubuntu 16.04 on SD card 2018-4-28====== |
PDF format file download | PDF format file download | ||
Line 19: | Line 19: | ||
http://forum.banana-pi.org/uploads/default/original/2X/c/c6dc409abc249c57a4cb2b7aedaddec6b80a9026.pdf | http://forum.banana-pi.org/uploads/default/original/2X/c/c6dc409abc249c57a4cb2b7aedaddec6b80a9026.pdf | ||
− | ====Ubuntu 16.04 Install and run Node.js and http-server==== | + | =====Ubuntu 16.04 Install and run Node.js and http-server==== |
* insltall Node.js | * insltall Node.js |
Revision as of 21:24, 7 May 2018
Introduction
Read more: Banana Pi BPI-W2
Development
Let's get start to develop on BPI-W2, see amazing things happen.
Basic Development
Prepare to develop
Load your first image on W2
Build your own image on W2
Ubuntu
How to make and run the 64-bit ubuntu 16.04 on SD card 2018-4-28=
PDF format file download
=Ubuntu 16.04 Install and run Node.js and http-server
- insltall Node.js
After running Ubuntu 16.04, it's easy to install packages on the W2. Please follow below steps to install node.js:
1. apt-get install nodejs 2. apt-get install npm 3. npm install -g http-server 4. make a link to nodejs: cd /usr/bin/; ln -sf nodejs node
then Node.js is ready on your system.