From 182f8ab5930e081bbe8df6589e8b50044d830274 Mon Sep 17 00:00:00 2001 From: Henryk Iwaniuk Date: Thu, 26 Jan 2017 17:52:09 +0100 Subject: [PATCH] instructions do not apply to debian debian does not have linux-image-extra-virtual or linux-image-extra-$(uname -r) packages. the author might have used a debian based distribution. debian kernels come with the aufs modules per default, no need to install extra packages. --- engine/installation/linux/debian.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/engine/installation/linux/debian.md b/engine/installation/linux/debian.md index 86e86585ea..7ad7fb0b4d 100644 --- a/engine/installation/linux/debian.md +++ b/engine/installation/linux/debian.md @@ -36,16 +36,12 @@ To install Docker, you need the 64-bit version of one of these Debian versions: ### Recommended extra packages -You need `curl` if you don't have it. Unless you have a strong reason not to, -install the `linux-image-extra-*` packages, which allow Docker to use the `aufs` -storage drivers. **This applies to all versions of Debian**. +You need `curl` if you don't have it. ```bash $ sudo apt-get update -$ sudo apt-get install curl \ - linux-image-extra-$(uname -r) \ - linux-image-extra-virtual +$ sudo apt-get install curl ``` ## Install Docker