moodLearning Wiki

This is an old revision of the document!


How to Prepare an eLib Box SDcard Image

1. Download a compressed image of the SD Card from downloads.library.ph

2.Decompress the file. On macOS terminal:

 gunzip tambayayong-eLib-box-20200609.dmg.xz

The resulting file is tambayayong-eLib-box-20200609.dmg 3. Copy the disk image into the SD Card. On macOS terminal: 3.1. Determine device number of where drive where the new SD Card is mounted and copy image to such disk. On macOS terminal:

diskutil list

3.2. Assuming that the SD Card is on /dev/disk4, you may have a subpartition (say, disk4s2) that you need to unmount:

diskutil umount /dev/disk4s2

3.3. Copy the image:

sudo dd bs=1m if=<directory>/tambayayong-eLib-box-20200609.dmg of=/dev/rdisk4

3.4. Once done, dismount disk properly:

diskutil unmountDisk /dev/disk4