- Raspberry Pi
- Raspbian wheezy
- Access to shell, e.g., via SSH
Note the MANUAL operations below
sudo raspi-config # MANUAL: expand disk, set password, set locale to US, change the network name| #!/bin/bash | |
| ### NOTE | |
| # Ideally, you should create an image from small partition (e.g., 4 GB) instead of the whole SD card (e.g., 32 GB). | |
| # For example, an image for Raspbian image should be created by the following procdure: | |
| # (1) Install the official Raspbian image (3.5 GB for Jessie) on an SD card | |
| # (2) Manually expand the partition to a modest size to accommodate your base software (e.g., 4 GB) | |
| # (3) Perform apt-get update and upgrade, install software and configuration that you want. | |
| # (4) Create an image from that (4 GB) partition | |
| # |