| Version 1 (modified by mekoniak, 3 years ago) |
|---|
Creating a Root Filesystem Tarball from a BeagleBoard SD Card
- Mount the source SD Card and navigate to the root filesystem directory (the ext2 partition)
- Create a tarball of the root filesystem:
$ sudo tar czf /path/to/create/file/at/filename.tar.gz *
Extract a Root Filesystem Tarball to an SD Card
- Mount the formatted destination SD Card.
- Navigate to the location of the tarball.
- Extract the tarball created in the first part:
$ sudo tar xvzpf filename.tar.gz -C /path/to/SD/Card