Release Note:
1,Support BPI-R1
2,uboot : 2015-7
3,linux kernel: 4.2.
4,ethernet work fine
5,WIFI driver work fine
6,user name/pass: ubuntu/ubuntu
7,this is just a test version.
How could I install this image on this SD Card by knowing I work on a linux computer ?
When this image will be installed does it automatically boot or must I do something to get this SD Card bootable ? Then what are the command lines to do that
install your Snappy Ubuntu + Docker image on the SD Card
Use the linux dd command.
It writes and burns an image to a storage device.
It will also make the card bootable.
Linux:
Run sudo fdisk –l command to check the SD card node.
Verify if the hash key of the zip file is the same as shown on the downloads page (optional).
sha1sum [path]/[imagename]
This will print out a long hex number which should match the “SHA-1” line for the SD image you have downloaded.
Run umount /dev/sdxx to unmount all the partition of the the SD card
Run sudo dd bs=4M if=[path]/[imagename] of=/dev/sdx command to write image file to SD card. Wait patiently to successfully complete writing. Please note that block size set to 4M will work most of the time, if not, please try 1M, although 1M will take considerably longer.You can use sudo pkill –USR1 –n –x dd command to check progress