5

onsshを使用して ec2 インスタンスにアクセスした後、実行してみましたvagrantubuntu

sudo docker run -i -t ubuntu echo 'hello'、しかし、私はこのエラーが発生します:

Error starting container da3124903fc4: Unable to load the AUFS module

どうすればこれをロードできますAUFS moduleか?

私はすでにaufs-toolsインストールしています。

4

3 に答える 3

3

apt-get purge lxc-docker次のコマンドで実行して再インストールしました。

curl https://get.docker.io | sudo sh

以下のエラーが出ましたが、インストールは続行され終了しました。

Ensuring basic dependencies are installed...
Looking in /proc/filesystems to see if we have AUFS support...
Ahem, it looks like the current kernel does not support AUFS.
Let's see if we can load the AUFS module with modprobe...
FATAL: Module aufs not found.
Ahem, things didn't turn out as expected.

私が実行docker run ubuntu echo helloすると結果はhelloですので、すべて問題ないようです。

于 2013-09-04T07:09:32.303 に答える