Install dockers on ubuntu raring

Sorry for this newbie question ... :)

I tried several times to install dockers on my Linux machine, but I was never able to do it correctly. I am sure that this is something simple that I had to do, but still I did not find it!

I followed the tutorial:

http://docs.docker.io/en/latest/installation/ubuntulinux/#ubuntu-raring

but when I try to use the command:

sudo apt-get install lxc-docker

I get the following error:

"Unable to find lxc-docker package"

so when i try to execute the command: curl http://get.docker.io | sudo sh

I get:

I hajeangui@jeangui-portable:/usr/local/bin$ curl http://get.docker.io | sudo sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  1834  100  1834    0     0   2353      0 --:--:-- --:--:-- --:--:--  3869
Ensuring basic dependencies are installed...
Looking in /proc/filesystems to see if we have AUFS support...
Found.
Downloading docker binary to /usr/local/bin...
Upstart script already exists.
Starting dockerd...
Done.

But when I run: sudo docker

I get this exception: Unable to start binary docker.

I tried to clear the lxc-docker package, but it does not seem to be installed ...

I do not understand.

Help to cope :) please.

amuses jeangui

+4
3

:

sudo sh -c "curl https://get.docker.io/gpg | apt-key add -"
sudo sh -c "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
sudo apt-get update
sudo apt-get install lxc-docker

(ppa), apt-.

. http://docs.docker.io/en/latest/installation/ubuntulinux/#ubuntu-raring-13-04-64-bit

+27

, , Docker 64- Ubuntu OS.

sudo apt-get update
sudo apt-get install linux-image-generic-lts-raring linux-headers-generic-lts-raring
sudo reboot
sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -"
sudo sh -c "echo deb http://get.docker.io/ubuntu docker main\ > /etc/apt/sources.list.d/docker.list"
sudo apt-get update
sudo apt-get install lxc-docker

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package lxc-docker

64 , - 32 , .

+7

sudo apt update sudo apt install apt-transport-https ca -c curl -c ommon sh -c "echo deb [arch = amd64] https://download.docker.com/linux/ubuntu artful >/etc/apt/sources.list.d/docker.list "curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo apt sudo apt -c e

, . Docker Ubuntu, RHEL/CentOS 7 Windows 10.

0

All Articles