Install BeagleBone

From xPL
Revision as of 18:04, 16 March 2014 by Fcorthay (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The xPL protocol is light enough to run on simple machines such as the BeagleBone.

Install Ubuntu

The BeagleBone comes with an Angstrom distribution. Whilst this Linux distribution is tailored for embedded devices, Ubuntu's ARM port is easier to use for people used to Ubuntu.

Different methods allow to install Ubuntu on the BeagleBone. If one intends to use the serial port, an image with debugfs is preferred.

Having Ubuntu running, a few configuration steps might be helpful.

Change root password

sudo su
passwd
apt-get update

Swap space

Create a swap file:

dd if=/dev/zero of=/root/swapfile bs=1M count=1024
chmod 600 /root/swapfile
mkswap /root/swapfile

Enable the swapfile:

swapon /root/swapfile
swapon -s
free -k

To enable at reboot, edit /etc/fstab:

/root/myswapfile    swap    swap    defaults    0 0

Ethernet

Check the Ethernet connection:

ifconfig | grep inet
ping google.com

Connect to the BeagleBone via SSH to continue working (on a larger window).

ssh root@192.168.1.165

Change host name:

nano /etc/hosts
  change: "127.0.1.1 ubuntu-armhf" to: "127.0.1.1 beagleBoneHostname"
nano /etc/hostname

Set up a bonjour discovery:

apt-get install avahi-daemon libnss-mdns

Give a static address:

nano /etc/network/interfaces
  iface eth0 inet static
  address 192.168.1.14 
  gateway 192.168.1.1 
  netmask 255.255.255.0
nano /etc/resolv.conf
/etc/init.d/networking restart

Set-up Apple FileProtocol (AFP) sharing:

apt-get install netatalk
nano /etc/netatalk/AppleVolumes.default

Locales

Install locales (for PERL and others):

cd
apt-get install locales
export LANGUAGE=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
locale-gen en_US.UTF-8
dpkg-reconfigure locales

Then edit .bashrc and add: export LC_ALL=C

Command-line editing

Enable history search and bash tab autocompletion:

nano .bashrc
nano /etc/inputrc
apt-get update && apt-get install bash-completion

Install manuals:

apt-get install man-db

Programming tools

Install compilation tools (make, gcc, …):

apt-get install build-essential

Install Perl documentation reader:

apt-get install perl-doc

Local time

Set local time:

ls -lr /usr/share/zoneinfo/Europe/
rm /etc/localtime
ln -s /usr/share/zoneinfo/Europe/Zurich /etc/localtime

Control user

Add the control user:

useradd -m -g users -G dialout,audio -s /bin/bash control
passwd control