We where reading about OS level virtualization and came across that
non of such Open Source implementation have feature of providing
virtualization for propitiatory OS like windows.
Proposing idea:
We can run QEMU in one of the container which will create a
virtualization environment for Windows.
We where reading about OS level virtualization and came across that
non of such Open Source implementation have feature of providing
virtualization for propitiatory OS like windows.
Proposing idea:
We can run QEMU in one of the container which will create a
virtualization environment for Windows.
The idea works, you just have to make the /dev/kvm device
visible in the lxc with something like:
lxc.cgroup.devices.allow = c 10:* rwm"
The kvm device has a minor that could be detected before lxc configuration
to avoid the * giving the lxc visibility to all the miscellaneous devices.
Of cours
On 16.08.2012 22:18, Kumar Sukhani wrote:
> We where reading about OS level virtualization and came across that
> non of such Open Source implementation have feature of providing
> virtualization for propitiatory OS like windows.
>
> Proposing idea:
> We can run QEMU in one of the container which
If user calls 'lxc-create -t ubuntu -- -h' (as opposed to
'lxc-create -t ubuntu -h') then the ubuntu template will print its
help then exit 0. Then lxc-create does not cleanup. So detect this
in lxc-create.
---
src/lxc/lxc-create.in | 12
1 file changed, 12 insertions(+)
diff --g