-
Notifications
You must be signed in to change notification settings - Fork 18
Home
[TOC]
To create a new user account go to openframe.io/new-account
Although technically it can run on any computer, Openframe is developed for the Raspberry Pi.
- Raspberry Pi 2 w/ power adaptor
- HDMI monitor (or any monitor with an HDMI adaptor)
- SD card pre-flashed w/ NOOBS
- WiFi dongle
- Keyboard + Mouse
- HDMI Cable
If you're looking for a starter pack, this would work well: Starter pack
- Insert the SD card, WiFi dongle, and connect the monitor, keyboard and mouse.
- Plug in the Pi, and follow the directions on screen, selecting Rasbian.
- Once the installation finishes, the Pi will reboot and open to the configuration screen.
- Select your timezone in Internationalisation Options > Change Timezone
- If you wish, change your password (the default password is raspberry)
- Select 'Finish', then 'Yes' when it asks about rebooting.
- When the Pi reboots, login with the root user (
pi) and password (raspberry, unless you changed it).
- After you're logged in at the command line, we'll start up the GUI in order to configure WiFi. At the command line type
startxto launch the GUI. - Once the GUI is open, click the network icon in the upper right-hand corner, and select your WiFi network. Enter the password at the prompt, and connect.
- Assuming the WiFi has connected successfully, click 'Menu' on the upper left and select 'Shutdown', then select the 'Logout' option, and press 'Ok'.
Download Node.js source:
Type the following:
wget https://nodejs.org/dist/v4.3.0/node-v4.3.0-linux-armv7l.tar.xz
tar -xf node-v4.3.0-linux-armv7l.tar.xz
cd node-v4.3.0-linux-armv7l
Type the following:
wget https://nodejs.org/dist/v4.3.0/node-v4.3.0-linux-armv6l.tar.xz
tar -xf node-v4.3.0-linux-armv6l.tar.xz
cd node-v4.3.0-linux-armv6l
__
After installing Node.js, copy to /usr/local:
sudo cp -R * /usr/local/
And setup the permissions for npm to work globally:
sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}