Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用此代码在 Ubuntu Ubuntu 12.04.2 LTS 中创建一个容器,但结果我得到了错误:
require 'lxc' c = LXC::Container.new 'foo' c.create('/usr/lib/lxc/templates/lxc-ubuntu') => false
可能我使用了错误的模板。您是否看到任何错误或您知道默认模板在哪里?
您不需要提供 LXC 模板的完整路径。c.create ('ubuntu')应该运作良好。
c.create ('ubuntu')