Puritan/StepByStep: Difference between revisions
< Puritan
Jump to navigation
Jump to search
Mikedawson (talk | contribs) (New page: =Introduction= This is an attempt to producing a "For Dummies" Step by Step Guide to producing a custom image with Puritan tested on Ubuntu 8.10 paying particular attention to caching (as...) |
Mikedawson (talk | contribs) No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
This is an attempt to producing a "For Dummies" Step by Step Guide to producing a custom image with Puritan tested on Ubuntu 8.10 paying particular attention to caching (as we are working on low bandwidth connections). |
This is an attempt to producing a "For Dummies" Step by Step Guide to producing a custom image with Puritan tested on Ubuntu 8.10 paying particular attention to caching (as we are working on low bandwidth connections). |
||
==Install Pre-Requisite Packages== |
|||
<pre> |
<pre> |
||
Line 11: | Line 11: | ||
We wound up with 6.5MB to download at this stage; this might be higher or lower depending on what you do / don't have installed. |
We wound up with 6.5MB to download at this stage; this might be higher or lower depending on what you do / don't have installed. |
||
==Download Puritan== |
|||
Make a home for Puritan to download into and then start the git clone to download it: |
|||
<pre> |
<pre> |
||
Line 17: | Line 18: | ||
$mkdir /usr/src/puritan |
$mkdir /usr/src/puritan |
||
$cd /usr/src/puritan |
$cd /usr/src/puritan |
||
$(git clone git://dev.laptop.org/users/mstone/puritan compilation; cd compilation; git branch --track 767 origin/767; git checkout 767) |
|||
$git clone git://dev.laptop.org/users/mstone/puritan ui |
$git clone git://dev.laptop.org/users/mstone/puritan ui |
||
</pre> |
|||
==Start Puritan== |
|||
<pre> |
|||
sudo -s |
|||
newgrp mock |
|||
usermod -a -G mock root |
|||
</pre> |
</pre> |
Latest revision as of 08:07, 6 May 2009
Introduction
This is an attempt to producing a "For Dummies" Step by Step Guide to producing a custom image with Puritan tested on Ubuntu 8.10 paying particular attention to caching (as we are working on low bandwidth connections).
Install Pre-Requisite Packages
$sudo apt-get install build-essential mock git-core
We wound up with 6.5MB to download at this stage; this might be higher or lower depending on what you do / don't have installed.
Download Puritan
Make a home for Puritan to download into and then start the git clone to download it:
$sudo -s $mkdir /usr/src/puritan $cd /usr/src/puritan $(git clone git://dev.laptop.org/users/mstone/puritan compilation; cd compilation; git branch --track 767 origin/767; git checkout 767) $git clone git://dev.laptop.org/users/mstone/puritan ui
Start Puritan
sudo -s newgrp mock usermod -a -G mock root