From 878670c2527bbd7e6818626202d4ba343b1ea7b8 Mon Sep 17 00:00:00 2001 From: Misty Stanley-Jones Date: Tue, 28 Mar 2017 08:51:39 -0700 Subject: [PATCH] Add instructions for Wheezy to remove the deb-src repo (#2422) --- engine/installation/linux/debian.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/engine/installation/linux/debian.md b/engine/installation/linux/debian.md index bccfef0536..8adf71ba88 100644 --- a/engine/installation/linux/debian.md +++ b/engine/installation/linux/debian.md @@ -136,6 +136,16 @@ from the repository. $(lsb_release -cs) \ stable" ``` +4. **Wheezy only**: The version of `add-apt-repository` on Wheezy adds a `deb-src` + repository that does not exist. You need to comment out this repository or + running `apt-get update` will fail. Edit `/etc/apt/sources.list`. Find the + line like the following, and comment it out or remove it: + + ```none + deb-src [arch=amd64] https://download.docker.com/linux/debian wheezy stable + ``` + + Save and exit the file. [Learn about **stable** and **edge** channels](/engine/installation/).