Created
October 31, 2013 19:06
-
-
Save crosbymichael/7255065 to your computer and use it in GitHub Desktop.
Docker on Ubuntu 13.10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Remove current lxc version which is lxc/1.0.0~alpha1-0ubuntu11 | |
sudo apt-get remove lxc | |
# Download the new pakcages with the updated | |
wget https://launchpad.net/ubuntu/+source/lxc/1.0.0~alpha1-0ubuntu12/+build/5171688/+files/lxc_1.0.0~alpha1-0ubuntu12_amd64.deb | |
wget https://launchpad.net/ubuntu/+source/lxc/1.0.0~alpha1-0ubuntu12/+build/5171688/+files/liblxc0_1.0.0~alpha1-0ubuntu12_amd64.deb | |
# Install the updated packages | |
sudo dpkg -i liblxc0_1.0.0~alpha1-0ubuntu12_amd64.deb | |
sudo dpkg -i lxc_1.0.0~alpha1-0ubuntu12_amd64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment