Ubuntu Pastebin

Paste from morphis at Mon, 12 Sep 2016 07:59:01 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/bin/bash

mount -t devtmpfs none /dev
mkdir /dev/pts
mount -t devpts devpts /dev/pts

mount -t sysfs none /sys
mkdir /sys/fs/cgroup
mount -t tmpfs none /sys/fs/cgroup
mkdir /sys/fs/cgroup/systemd
mount -t cgroup -o none,name=systemd,xattr cgroup /sys/fs/cgroup/systemd

mount -t proc none /proc

exec /lib/systemd/systemd --log-level=debug --log-target=kmsg
Download as text