This repository was archived by the owner on Feb 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 881
This repository was archived by the owner on Feb 24, 2020. It is now read-only.
Can rkt be installed on Ubuntu Utopic? #1320
Copy link
Copy link
Closed
Description
Hi!
I don't want to use virtualbox. I have a local Ubuntu Utopic machine and I tried installing and running the etcd ACI based on the getting started guide for Ubuntu Vivid (https://github.com/coreos/rkt/blob/master/Documentation/getting-started-ubuntu-vivid.md).
rkt installs OK, and its possible to grab the etcd ACI just fine. However, when I go to run the image with rkt, I get issues:
jaypipes@uberbox:~/rkt-v0.8.0$ sudo ./rkt run coreos.com/etcd:v2.0.9
rkt: searching for app image coreos.com/etcd:v2.0.9
rkt: found image in local store, skipping fetching from https://github.com/coreos/etcd/releases/download/v2.0.9/etcd-v2.0.9-linux-amd64.aci
2015/08/22 19:41:16 Preparing stage1
2015/08/22 19:41:16 Writing image manifest
2015/08/22 19:41:16 Loading image sha512-91e98d7f1679a097c878203c9659f2a26ae394656b3147963324c61fa3832f15
2015/08/22 19:41:16 Writing pod manifest
2015/08/22 19:41:16 Setting up stage1
2015/08/22 19:41:16 Wrote filesystem to /var/lib/rkt/pods/run/902887d9-0e7c-4946-94a9-c26667c861fe
2015/08/22 19:41:16 Pivoting to filesystem /var/lib/rkt/pods/run/902887d9-0e7c-4946-94a9-c26667c861fe
2015/08/22 19:41:16 Execing /init
Failed to read link /sys/fs/cgroup/blkio: No such file or directory
I went ahead and apt-get install'd libvirt-bin after a little bit of googling led me to think that cgroups were properly set up by installing libvirt-bin, but unfortunately, the problem persisted, though with a failure to read a different link:
jaypipes@uberbox:~/rkt-v0.8.0$ sudo ./rkt run coreos.com/etcd:v2.0.9
rkt: searching for app image coreos.com/etcd:v2.0.9
rkt: found image in local store, skipping fetching from https://github.com/coreos/etcd/releases/download/v2.0.9/etcd-v2.0.9-linux-amd64.aci
2015/08/22 19:44:07 Preparing stage1
2015/08/22 19:44:07 Writing image manifest
2015/08/22 19:44:07 Loading image sha512-91e98d7f1679a097c878203c9659f2a26ae394656b3147963324c61fa3832f15
2015/08/22 19:44:07 Writing pod manifest
2015/08/22 19:44:07 Setting up stage1
2015/08/22 19:44:07 Wrote filesystem to /var/lib/rkt/pods/run/0bac9301-395c-4a1c-8695-29a0fbbdad0a
2015/08/22 19:44:07 Pivoting to filesystem /var/lib/rkt/pods/run/0bac9301-395c-4a1c-8695-29a0fbbdad0a
2015/08/22 19:44:07 Execing /init
Failed to read link /sys/fs/cgroup/cpuacct: No such file or directory
Any ideas? Is it possible to run rkt and ACIs on Ubuntu Utopic?
Thanks much in advance!
-jay