Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jc2k/mkpi
Some scripts for making raspbian images from debian/ubuntu hosts
https://github.com/jc2k/mkpi
Last synced: about 1 month ago
JSON representation
Some scripts for making raspbian images from debian/ubuntu hosts
- Host: GitHub
- URL: https://github.com/jc2k/mkpi
- Owner: Jc2k
- Created: 2014-07-02T20:26:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-23T21:56:53.000Z (over 10 years ago)
- Last Synced: 2024-04-16T01:44:34.063Z (8 months ago)
- Language: Python
- Size: 168 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
====
mkpi
====Easy custom raspbian/debian images on for your raspberry pi.
The script is a bit like the old ``ubuntu-vm-builder`` package, but produces
images for raspberry pi that can be burnt to SD card with ``dd``.Usage
=====You need some dependencies first::
sudo apt-get install binfmt-support qemu-user-static debootstrap kpartx dosfstools
You can install ``mkpi`` and its dependencies with ``pip``::
sudo pip install mkpi
or ``easy_install``::
sudo easy_install mkpi
It's better to install it in a ``virtualenv`` so it's easier to remove.
Then you can make your first image with::
sudo mkpi
Hacking
=======Checkout the repo, create a virtualenv and do an editable install::
git clone git://github.com/Jc2k/mkpi
cd mkpi
virtualenv .
source bin/activate
pip install -e .