../

Summary

I've previously written posts on similar topics:

I've now gotten my hands on one of the new BeagleBone Black Wireless first announced in September 2016, and thought I'd document how I got it up and running with the latest RCN build.

What You'll Need

These instructions make several assumptions. You'll need the following:

There are two main sources for the installation images. The "official" builds can be found on the BeagleBoard Lastest Images page. More specifically, you can find a list of images if you browse to https://debian.beagleboard.org/images/. An example of an image for the BBBW is bone-debian-8.6-lxqt-4gb-armhf-2016-11-06-4gb.img.xz.

Another source of installation images are the builds regularly made by RCN (Robert C. Nelson). These are newer than the official released builds, and they're regularly updated so it is nearly useless to link directly to a specific image. Instead:

Debug Console

If you have a serial debug cable, now would be a good time to hook it up. This lets you observe any warning or error messages during the installation. All models of BeagleBone use the same serial debug pins:

The USB/serial debug cable comes with a 4th wire, typically red. Do not connect this 4th wire! It carries +5V from the USB port, while the BeagleBone is only expecting 3.3V on the debug header.

Standard tools such as minicom, screen, or gtkterm can be used to access /dev/ttyUSB0. For example:

sudo apt-get install minicom sudo minicom --device /dev/ttyUSB0 --color on

Installing

Run the following command to extract the installation image:

unxz --verbose BBBW-blank-debian-8.6-lxqt-4gb-armhf-2016-12-18-4gb.img.xz

The decompressed .img file should be between 3 and 4 GiB in size. Use a tool such as Etcher to write the image to the micro SD card.

Once the write is complete, eject the Micro SD card and move it to the BBBW. On modern builds, you don't need to hold down the boot switch to get the device to boot from the micro SD. Insert the USB cable into the BBBW to power it on. Once the 4 LEDs in the upper right begin their "sweep" pattern, you know the installation is taking place. The entire SD card will be rsync'd to the eMMC. The BBBW will automatically power down once the installation is finished, at which time you can safely remove the micro SD. If you've hooked up a serial console debug cable, look through the messages to see if there was an obvious error during the installation.

After you've removed the micro SD card, press the reset switch, or remove and put back the power cable. This will cause the BBBW to boot from the eMMC with the newly-installed image. If you have a serial console, login with the username "debian" and the password "temppwd". If you are using the ethernet-over-USB, then from the host computer to which the BBBW is connected, run ssh debian@192.168.7.2.

WiFi

Most likely the first thing you'll want to configure is support for WiFi. This can be scripted, but the easiest method is to use Connection Manager in interactive mode:

sudo connmanctl > disable p2p > disable bluetooth > disable offline > tether wifi disable > enable wifi > scan wifi > services > agent on > connect wifi_<TAB> > quit

The WiFi service name is composed of the 12-character MAC address hex string, followed by the SSID name in hex format. This is why it is easier to press TAB to let connmanctl fill in the name to use.

Once you quit from connmanctl, the wlan0 interface should have DHCP'd an IP address. You can now ssh directly to the BBBW device over WiFi.

By default, the BBBW (and BBGW) WiFi uses the "extreme low power" setting. There are three possible settings:

I've had problems in the past with spotty WiFi connectivity when using the default "extreme low power" setting, so I typically set all my BBGW and BBBW devices to "active mode":

echo 0 | sudo tee /sys/kernel/debug/ieee80211/phy0/wlcore/sleep_auth

Updates

Now that WiFi is operational, the next thing to do is install any updates and fixes. Run the following commands:

sudo apt-get update sudo apt-get dist-upgrade sudo apt-get autoremove sudo apt-get autoclean sudo apt-get clean

Depending on how recent the installed build happens to be and what exactly was updated, it probably is a good idea to reboot once at this stage.

Timezone

The BBBW uses UTC by default. There are several ways to set a different timezone if you'd like to use something other than UTC.

If you don't know the exact name of the timezone you want to use, then run this command which will let you choose a timezone from a menu:

sudo dpkg-reconfigure tzdata

If you do know the exact name of the timezone -- or you want to script it -- then run this command:

timedatectl set-timezone America/Vancouver

The BeagleBone devices don't have a RTC (real time clock). When powered down, it has no way to keep track of the current date or time. If you want the device to use NTP to get the current date and time, run the following command:

sudo apt-get install ntp ntpdate

Users

The root and debian users should be secured, and a backup user (other than "debian") probably needs to be created.

Run the following commands to secure the root and debian users:

cd /opt/scripts/un-tweak-image/ sudo ./debian-re-secure-root-ssh.sh sudo passwd root sudo passwd debian

To create a new username so you don't have to use "debian", run the following commands:

sudo useradd --create-home --shell /bin/bash --user-group --groups sudo bob sudo passwd bob

Now that the default credentials are no longer debian/temppwd, you'll most likely want to alter the text shown at the login prompt:

sudo vi /etc/issue* /etc/motd

Disk Usage

At this point with a newly-installed device, free space is probably critically low on the eMMC. Run the following:

df -h

The root filesystem on /dev/mmcblk1p1 probably has very few MiB available. To clear up some space, purge packages which you are not using. For example, I remove the following:

sudo apt-get purge \ apache2 apache2-bin apache2-data apache2-utils \ doc-seeed-bbgw-getting-started \ doc-beaglebone-getting-started \ doc-beaglebonegreen-getting-started \ bone101 \ c9-core-installer \ bb-node-red-installer \ nodejs dpkg --list | grep "^rc" | cut -d " " -f 3 | xargs -r sudo dpkg --purge sudo rm -rf /var/cache/doc-beaglebone-getting-started sudo rm -rf /var/lib/cloud9 sudo rm -rf /var/lib/node_modules sudo rm -rf /usr/local/lib/node_modules sudo rm -rf /root/.npm sudo rm -rf /root/.node sudo rm -rf /root/.node-red sudo rm -rf /root/.node-gyp sudo rm -rf /root/.c9 sudo rm -rf /etc/apache2

To get some insight into which additional packages take up the most space on the eMMC, run the following command:

dpkg-query --show --showformat='${Installed-Size}\t${Package}\n' | sort -n

Once packages have been purged, run the following commands to remove old dependencies and delete the purged packages from the local cache:

sudo apt-get autoclean sudo apt-get autoremove sudo apt-get clean
Last modified: 2017-10-07
Stéphane Charette, stephanecharette@gmail.com
../