From: Konrad Rzeszutek Wilk Date: Tue, 2 Oct 2012 14:44:52 +0000 (-0400) Subject: fs: Mount devpts X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d6f2592c936c70353a9ede423fa5c4812ea8819f;p=xentesttools%2Fbootstrap.git fs: Mount devpts I am not sure how we worked before, but I started getting: PTY allocation request failed on channel 0 when trying to SSH. It was due to the devpts not being mounted. Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/root_image/etc/init.d/core_filesystems b/root_image/etc/init.d/core_filesystems index c2f1055..0f64812 100755 --- a/root_image/etc/init.d/core_filesystems +++ b/root_image/etc/init.d/core_filesystems @@ -57,3 +57,7 @@ mount -t xenfs xenfs /proc/xen mount debugfs -t debugfs /sys/kernel/debug mount configfs -t configfs /sys/kernel/config + +mkdir /dev/pts +mount -t devpts devpts /dev/pts +