Skip to content

Instantly share code, notes, and snippets.

@glevand
glevand / README.md
Created August 14, 2017 20:21 — forked from dm0-/README.md
Automated Tectonic installer for local virtual machines

Tectonic virtual install script

This script is a Tectonic installer for local development and testing. It creates a cluster of virtual machines on the same host that runs the script. All files, processes, and any other virtual resources that are created during its execution should be automatically removed on exit.

Dependencies

The first lines in the script list every command dependency, which can be

@glevand
glevand / seccomp-name-test.c
Created September 20, 2017 00:29
Test for valid seccomp syscall names
#include <assert.h>
#include <seccomp.h>
#include <stdio.h>
#include <string.h>
static int _check(scmp_filter_ctx ctx, const char *name, int number)
{
int rc = seccomp_rule_add_exact(ctx, SCMP_ACT_ALLOW, number, 0);
if (!rc) {

Linaro Developer Cloud CoreOS Container Linux HOWTO

2007.11.01

Image Creation

Use an existing CoreOS Container Linux image from the Developer Cloud or create a new image if what you need is not available.