Device or resource busy - Docker

alvas picture alvas · Apr 7, 2017 · Viewed 10.3k times · Source

When doing apt-get -y upgrade on a new Ubuntu 14.04 machine with the ubuntu:latest (Xenial) image, it raised an error:

Setting up makedev (2.3.1-93ubuntu2~ubuntu16.04.1) ...
mv: cannot move 'console-' to 'console': Device or resource busy
makedev console c 5 1 root tty 0600: failed

I've a fresh install of docker on a fresh Ubuntu 14.04, using these command:

sudo apt-get remove docker docker-engine
sudo apt-get update
sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual
wget -qO- https://get.docker.com/ | sudo sh
su - $USER # To logout and login

Docker for hello-world runs fine:

$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
78445dd45222: Pull complete 
Digest: sha256:c5515758d4c5e1e838e9cd307f6c6a0d620b5e07e6f927b07d05f6d12a1ac8d7
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://cloud.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/

When I create an empty docker container with:

docker run -it ubuntu bash

and ran the following:

apt-get update
apt-get install -y debconf-utils
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
apt-get update
apt-get -y upgrade

The error:

Setting up makedev (2.3.1-93ubuntu2~ubuntu16.04.1) ...
mv: cannot move 'console-' to 'console': Device or resource busy
makedev console c 5 1 root tty 0600: failed

is raised when doing the last apt-get -y upgrade

The full docker log is on: https://gist.github.com/alvations/ebe7175b984213d6f64a3c779ba3249e

Answer

spacepickle picture spacepickle · Apr 13, 2017

Agree with other answers/comments that apt-get -y upgrade isn't as good an idea as pulling a newer/updated image. Where a particular package is required but out of date in an image, installing that particular package is often enough (since dependencies will be updated as necessary).

However, there really is no reason that you shouldnt be able to use apt-get -y upgrade and in fact, I'd consider this a bug, similar to but not exactly the same as:

https://bugs.launchpad.net/ubuntu/+source/makedev/+bug/1675163

The part that is failing is the first call to MAKEDEV in the postinst script but this is handled and the script continues. Ultimately this means there is no current issue with installing makedev. But this may not always be true so probably requires a bug to be raised with Ubuntu to have docker containers detected as well (somehow).

Note: if you care about makedev ruining your docker /dev/ directory currently or want to make sure you get rid of any error condition from installing makedev, the fix for the bug I linked to can be used to trick the postinstall script into not running. The check in the script says:

# don't stomp on LXC users
if grep -q container=lxc /proc/1/environ
then
    echo "LXC container detected, aborting due to LXC managed /dev."
    exit 0
fi

so if you were to add an environment variable whose name ends in container with the value lxc, then the check would be tripped and no new devices would be installed

docker run -ti -e "ImNotAnLXCcontainer=lxc" ubuntu

This will cause the script to exit, not create a whole bunch of /dev/ entries, and output the message:

Setting up makedev (2.3.1-93ubuntu2~ubuntu16.04.1) ...
LXC container detected, aborting due to LXC managed /dev.