lxc.cgroup.devices.allow = c 10:236 rwm
lxc.cgroup.devices.allow = b 252:* rwm
https://wiki.deimos.fr/LXC_:_Install_and_configure_the_Linux_Containers#LXC_control_device_mapper
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import mechanize | |
from colorama import init | |
from colorama import Fore, Back, Style | |
init() | |
def main(): |
function load_efi_video { | |
set gfxmode=auto | |
insmod efi_gop | |
insmod efi_uga | |
insmod gfxterm | |
terminal_output gfxterm | |
} | |
function load_video { | |
set gfxmode=auto |
#!/usr/bin/env python3 | |
# | |
# Copyright 2015 Canonical Ltd. | |
# | |
# Authors: | |
# Daniel Manrique <[email protected]> | |
# | |
# develop-in-lxc is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License version 3, as | |
# published by the Free Software Foundation. |
lxc.cgroup.devices.allow = c 10:236 rwm
lxc.cgroup.devices.allow = b 252:* rwm
https://wiki.deimos.fr/LXC_:_Install_and_configure_the_Linux_Containers#LXC_control_device_mapper
Curtin has a test suite named vmtest
. It has loads of configs for
installation that put curtin through a battery. As of this writing
it runs 192 installations on amd64 covering all supported ubuntu releases.
It runs nightly under jenkins. See example results in the
curtin-vmtest-devel-amd64 job.
If you're interested just a general use of curtin without starting a VM, see another article 'Curtin Development on uvt-kvm'.