Changes between Initial Version and Version 1 of InvirtSetupNotes


Ignore:
Timestamp:
Mar 20, 2013, 2:30:07 AM (11 years ago)
Author:
glasgall
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InvirtSetupNotes

    v1 v1  
     1These are notes I made while creating a new xvm hypervisor on Precise:
     2
     3- create schroot with 'sbuild-createchroot /srv/chroot/precise-amd64-sbuild http://mirrors.mit.edu/ubuntu'
     4- defang init inside the schroot:
     5{{{
     6dpkg-divert --local /sbin/initctl
     7mv /sbin/initctl /sbin/initctl.distrib
     8ln -s /bin/true /sbin/initctl
     9}}}
     10- created /usr/sbin/policy-rc.d inside the chroot, containing:
     11{{{
     12#!/bin/sh
     13
     14exit 101
     15}}}