a little pedantic, perhaps, but on a fresh precise image from vagrant I
still needed these two packages to run the commands following it
| ... | ... |
@@ -11,7 +11,7 @@ Is is a great building block for automating distributed systems: large-scale web |
| 11 | 11 |
|
| 12 | 12 |
* *Any server*: docker can run on any x64 machine with a modern linux kernel - whether it's a laptop, a bare metal server or a VM. This makes it perfect for multi-cloud deployments. |
| 13 | 13 |
|
| 14 |
-* *Isolation*: docker isolates processes from each other and from the underlying host, using lightweight containers. |
|
| 14 |
+* *Isolation*: docker isolates processes from each other and from the underlying host, using lightweight containers. |
|
| 15 | 15 |
|
| 16 | 16 |
* *Repeatability*: because containers are isolated in their own filesystem, they behave the same regardless of where, when, and alongside what they run. |
| 17 | 17 |
|
| ... | ... |
@@ -227,7 +227,7 @@ Setting up a dev environment |
| 227 | 227 |
Instructions that is verified to work on Ubuntu 12.10, |
| 228 | 228 |
|
| 229 | 229 |
``` |
| 230 |
-sudo apt-get -y install lxc wget bsdtar curl libsqlite3-dev golang |
|
| 230 |
+sudo apt-get -y install lxc wget bsdtar curl libsqlite3-dev golang git pkg-config |
|
| 231 | 231 |
|
| 232 | 232 |
export GOPATH=~/go/ |
| 233 | 233 |
export PATH=$GOPATH/bin:$PATH |