X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/7781f616208a2b2a4102e0a989c3567b64d2e3b2..fdd0190bd048fbf1e211029d1876e064950caf8c:/code/main.py diff --git a/code/main.py b/code/main.py index 7060bb4..226a038 100755 --- a/code/main.py +++ b/code/main.py @@ -427,15 +427,17 @@ def helpHandler(username, state, path, fields): subjects = fields.getlist('subject') help_mapping = { - 'Autoinstall': """ + 'Autoinstalls': """ The autoinstaller builds a minimal Debian or Ubuntu system to run as a ParaVM. You can access the resulting system by logging into the serial console server -with your Kerberos tickets; there is no root password and no sshd.

+with your Kerberos tickets; there is no root password so sshd will +refuse login.

-

Under the covers the autoinstaller uses our own patched version of -xen-create-image, which is a tool based on debootstrap. If you're -quick in logging into the serial console, you can see it running. +

Under the covers, the autoinstaller uses our own patched version of +xen-create-image, which is a tool based on debootstrap. If you log +into the serial console while the install is running, you can watch +it. """, 'ParaVM Console': """ ParaVM machines do not support local console access over VNC. To @@ -444,8 +446,19 @@ to %s, using the name of the machine as your username.""" % config.console.hostname, 'HVM/ParaVM': """ HVM machines use the virtualization features of the processor, while -ParaVM machines use Xen's emulation of virtualization features. You -want an HVM virtualized machine.""", +ParaVM machines rely on a modified kernel to communicate directly with +the hypervisor. HVMs support boot CDs of any operating system, and +the VNC console applet. The three-minute autoinstaller produces +ParaVMs. ParaVMs typically are more efficient, and always support the +console server.

+ +

More details are on the +wiki, including steps to prepare an HVM guest to boot as a ParaVM +(which you can skip by using the autoinstaller to begin with.)

+ +

We recommend using a ParaVM when possible and an HVM when necessary. +""", 'CPU Weight': """ Don't ask us! We're as mystified as you are.""", 'Owner': """ @@ -643,7 +656,8 @@ Subject: %s %s """ % (to, config.web.hostname, subject, body) - p = subprocess.Popen(['/usr/sbin/sendmail', to], stdin=subprocess.PIPE) + p = subprocess.Popen(['/usr/sbin/sendmail', '-f', to, to], + stdin=subprocess.PIPE) p.stdin.write(mail) p.stdin.close() p.wait()