Thursday, December 4, 2014

Without having to use an intermediary SD Card. You can do this over the USB connection, or ethernet connection, by changing the IP address in the steps below.

After setting up your BBB with the applications you want, the basic steps are:

On the desktop, run this command in a terminal:

nc -l -p 19000|bzip2 -d|dd bs=16M of=BBB.img

On the BeagleBone Black, run this command in a terminal (you can SSH into it, or do it directly from the BBB):

dd bs=16M if=/dev/mmcblk0|bzip2 -c|nc 192.168.7.1 19000

The 192.168.7.1 address is for the USB connection. (BBB is 192.168.7.2) If you're doing this over an ethernet connection, you should use your desktop's IP address.

This is taken from instructions here: http://www.meetup.com/Milwaukee-Tech-Engine/messages/boards/thread/37061872

Finally, follow any method to install onto the next BBB. Here's an example of how to flash the emmc: http://derekmolloy.ie/write-a-new-image-to-the-beaglebone-black/



0 Comments:

Post a Comment