- Ensure firmware is flashed with the
install_GUI.sh
Intel untility - Setup SSH in the same utility
- Setup Wifi in the same utility
- Plug the microUSB into the ethernet USB port and setup manual routing in the resulting ethernet connection
- IP address: 192.168.2.50
- Mask: 255.255.255.0
- SSH into the Edison via USB and check Wifi IP address
ifconfig
- SSH into the Edison via Wifi with the obtained IP address
- Add the following to
/etc/opkg/base-feeds.conf
src/gz all http://repo.opkg.net/edison/repo/all
src/gz edison http://repo.opkg.net/edison/repo/edison
src/gz core2-32 http://repo.opkg.net/edison/repo/core2-32
- Enter the following to setup additional repos:
echo "src intel-edison-repo http://repo.opkg.net/edison/repo/edison" > /etc/opkg/opkg-repo-edison.conf
echo "src intel-edison-repo-all http://repo.opkg.net/edison/repo/edison" > /etc/opkg/opkg-repo-all.conf
echo "src intel-edison-repo-core2-32 http://repo.opkg.net/edison/repo/core2-32" > /etc/opkg/opkgrepocore2-32.conf
echo "src mraa-upm http://repo.opkg.net/edison/repo/edison" > /etc/opkg/mraa-upm.conf
- Update the packages
opkg update && opkg upgrade
- Change login shell to
bash
chsh -s /bin/bash
- Add custom
.bashrc
,.bash_aliases
and.bash_profile
to the home dir (can be found in this gist)
Great article on initial setup and adding users.
- Download Ubilinux image
- Flash image via
flashall.sh
- Enable Wifi by replacing
/etc/network/interfaces
with the following
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto usb0
iface usb0 inet static
address 192.168.2.15
netmask 255.255.255.0
auto wlan0
iface wlan0 inet dhcp
# For WPA2-Enterprise
wpa-driver wext
wpa-ssid eduroam
wpa-ap-scan 1
wpa-proto RSN
wpa-pairwise CCMP
wpa-group CCMP
wpa-eap PEAP
wpa-key-mgmt WPA-EAP
wpa-identity <username>
wpa-password <password>
# For WPA
#wpa-ssid eduroam
#wpa-psk <psk>
# For WEP
#wireless-essid Emutex
#wireless-mode Managed
#wireless-key s:password
# And the following 4 lines are for when using hostapd...
#auto wlan0
#iface wlan0 inet static
# address 192.168.42.1
# netmask 255.255.255.0
- Reboot
- SSH into the Edison via USB and check Wifi IP address
ifconfig
- SSH into the Edison via Wifi with the obtained IP address
- Choose the correct langauge in
etc/locale.gen
- Execute
locale-gen
- Simply run
apt-get update && apt-get upgrade
- Add the following lines to
.profile
# fix terminal dir colors
eval "$(dircolors ~/.dircolors)";
- Change the PS1 line in
.bashrc
to:
'${debian_chroot:+($debian_chroot)}\n\[\033[1;31m\]\u\[\033[1;30m\] on \[\033[01;32m\]\h\[\033[1;30m\] in \[\033[01;34m\]\w\[\033[00m\]\n'$'\xe2\x96\xb2 '
- Add the
.bash_aliases
and.dircolors
to the user's home dir
- Run
apt-get install sudo
- Add the user to the sudoers list by running
sudo adduser <username> sudo
- Correct the device name in
/etc/hostname
and add the device name to/etc/hosts
- Add the following to
/etc/udev/rules.d/10-mraa.rules
:
SUBSYSTEM=="gpio", KERNEL=="gpiochip*", ACTION=="add", PROGRAM="/bin/sh -c 'chown root:gpio /sys/class/gpio/export /sys/class/gpio/unexport; chmod 771 /sys/class/gpio/export /sys/class/gpio/unexport'"
SUBSYSTEM=="gpio", KERNEL=="gpio*", ACTION=="add", PROGRAM="/bin/sh -c 'chown root:gpio -Rh /sys/class/gpio /sys/devices/pci0000:00/0000:00:0c.0/gpio /sys/devices/pci0000:00/0000:00:08.0/i2c-1 /sys/kernel/debug/gpio_debug; chmod -R 770 /sys/class/gpio /sys/devices/pci0000:00/0000:00:0c.0/gpio /sys/devices/pci0000:00/0000:00:08.0/i2c-1 /sys/kernel/debug/gpio_debug; chmod a+rx /sys/kernel/debug'"
- Restart by
/etc/init.d/udev restart
- Install
nvm
by executingcurl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh | bash
- Install the desired version of Node as you normally would with
nvm
- Install build tools
apt-get install subversion libv4l-dev libjpeg8-dev imagemagick v4l-utils
- Download and install source
svn co https://svn.code.sf.net/p/mjpg-streamer/code/mjpg-streamer/ mjpg-streamer
cd mjpg-streamer
sudo ln -s /usr/include/linux/videodev2.h /usr/include/linux/videodev.h
make USE_LIBV4L2=true clean all
sudo make install
- Run
mjpeg-streamer
(if you want to :) )
/usr/local/bin/mjpg_streamer -i "/usr/local/lib/input_uvc.so -n -r 640x480 -f 30" -o "/usr/local/lib//output_http.so -n -p 8080 -w /usr/local/www"
apt-get install sysstat psmisc