Skip to content

Commit

Permalink
added: instructions for creating img file
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihai Nueleanu authored and Mihai Nueleanu committed Aug 13, 2020
1 parent 56ec119 commit b3a581f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,21 @@ Before executing this script following steps must be executed:
4. Execute this script `bash <(curl -sL https://kiosk-rpi-files.s3.eu-central-1.amazonaws.com/prepare-kiosk.sh)`. After script is completed the RPi will reboot and start with kiosk client
5. In case you want to exit kiosk mode: either connect keyboard and enter `ctrl`, `alt` and `backspace` keys combination or connect via SSH

### Generate .img from SD card

In order to reproduce multiple identical Kiosk devices you can create an `.img` backup file, and use it to flash the device.

1. Attach the source SD card that you want to clone
2. List the local drives mounted on your computer:
```bash
diskutil list
```
3. Create the gzipped `img` file:
```bash
sudo dd if=/dev/disk5 bs=1m | gzip > ~/workspace/kiosk-v0.0.5.gz
```


### Known Issues

* **none**

0 comments on commit b3a581f

Please sign in to comment.