--- xen-unstable.hg.copy/docs/Makefile 2005-10-28 18:36:33.000000000 -0700 +++ xen-unstable.hg/docs/Makefile 2005-10-28 14:58:18.000000000 -0700 @@ -1,5 +1,6 @@ #!/usr/bin/make -f +VERSION = xen-unstable INSTALL = install INSTALL_DIR = $(INSTALL) -d -m0755 @@ -9,9 +10,15 @@ FIG2DEV := fig2dev LATEX2HTML := latex2html DOXYGEN := doxygen +POD2MAN := pod2man pkgdocdir := /usr/share/doc/xen +mandir := /usr/share/man +DOC_MAN5SRC := $(wildcard man/*.pod.5) +DOC_MAN1SRC := $(wildcard man/*.pod.1) +DOC_MAN1 := $(patsubst man/%.pod.1,man1/%.1,$(DOC_MAN1SRC)) +DOC_MAN5 := $(patsubst man/%.pod.5,man5/%.5,$(DOC_MAN5SRC)) DOC_TEX := src/user.tex src/interface.tex DOC_PS := $(patsubst src/%.tex,ps/%.ps,$(DOC_TEX)) DOC_PDF := $(patsubst src/%.tex,pdf/%.pdf,$(DOC_TEX)) @@ -22,7 +29,7 @@ .PHONY: all build dev-docs python-dev-docs ps pdf html clean install all: build -build: ps pdf html +build: ps pdf html man-pages rm -f *.aux *.dvi *.bbl *.blg *.glo *.idx *.ilg *.log *.ind *.toc dev-docs: python-dev-docs @@ -43,17 +50,36 @@ $(MAKE) -C api/tools/python/latex ; else \ echo "Doxygen not installed; skipping python-dev-docs."; fi +man-pages: + @if which $(POD2MAN) 1>/dev/null 2>/dev/null; then \ + $(MAKE) $(DOC_MAN1) $(DOC_MAN5); fi + +man1/%.1: man/%.pod.1 Makefile + $(INSTALL_DIR) $(@D) + $(POD2MAN) --release=$(VERSION) --name=`echo $@ | sed 's/^man1.//'| \ + sed 's/.1//'` -s 1 -c "Xen" $< $@ + +man5/%.5: man/%.pod.5 Makefile + $(INSTALL_DIR) $(@D) + $(POD2MAN) --release=$(VERSION) --name=`echo $@ | sed 's/^man5.//'| \ + sed 's/.5//'` -s 5 -c "Xen" $< $@ + clean: rm -rf .word_count *.aux *.dvi *.bbl *.blg *.glo *.idx *~ rm -rf *.ilg *.log *.ind *.toc *.bak core rm -rf $(GFX) ps pdf html rm -rf api + rm -rf man5 + rm -rf man1 install: all rm -rf $(DESTDIR)$(pkgdocdir) $(INSTALL_DIR) $(DESTDIR)$(pkgdocdir) cp -dR ps $(DESTDIR)$(pkgdocdir) cp -dR pdf $(DESTDIR)$(pkgdocdir) + $(INSTALL_DIR) $(DESTDIR)$(mandir) + cp -dR man1 $(DESTDIR)$(mandir) + cp -dR man5 $(DESTDIR)$(mandir) [ ! -d html ] || cp -dR html $(DESTDIR)$(pkgdocdir) pdf/%.pdf: ps/%.ps diff -Nur xen-unstable.hg.copy/docs/man/xmdomain.cfg.pod.5 xen-unstable.hg/docs/man/xmdomain.cfg.pod.5 --- xen-unstable.hg.copy/docs/man/xmdomain.cfg.pod.5 1969-12-31 16:00:00.000000000 -0800 +++ xen-unstable.hg/docs/man/xmdomain.cfg.pod.5 2005-10-28 14:47:19.000000000 -0700 @@ -0,0 +1,87 @@ +=head1 NAME + +xmdomain.cfg - xm domain create config file format + +=head1 SYNOPSIS + + /etc/xen/myxendomain + /etc/xen/myxendomain2 + /etc/xen/auto/myxenautostarted + +=head1 DESCRIPTION + +The xm(1) program uses python executable config files to define +domains to create from scratch. Each of these config files needs to +contain a number of required options, and may specify many more. + +Domain configuration files live in /etc/xen by default, though the +full path to the config file must be specified in the I +command, so they can exist anywhere in the filesystem. + +/etc/xen/auto is a special case however, as domain config files in +that directory will be started automatically at system boot if the +xendomain init script is enabled. + +=head1 OPTIONS + +The following lists the most commonly used options for a domain config +file. + +=over 4 + +=item I + +The kernel image used in the domain. + +=item I + +The initial ramdisk to be used in the domain. Default xen domU +kernels do not usually need a ramdisk. + +=item I + +The amount of memory, in megabytes to allocate to the domain when it +starts. Allocating insufficient memory for a domain may produce +extremely bizarre behavior. + +=item I + +A unique name for the domain. You can not create 2 domains with the +same name. + +=item I + +Root stanza for the domain (required for Linux domains). + +=item I + +An array of disk stanzas + +=back + +A bare minimal config file example might be as follows: + + kernel = "/boot/vmlinuz-2.6-xenU" + memory = 128 + name = "MyLinux" + root = "/dev/hda1 ro" + +=head1 ADDITIONAL OPTIONS + +=over 4 + +=item I + +=back + +=head1 SEE ALSO + +B(1) + +=head1 AUTHOR + + Sean Dague + +=head1 BUGS + +Not all options are currently documented diff -Nur xen-unstable.hg.copy/docs/man/xm.pod.1 xen-unstable.hg/docs/man/xm.pod.1 --- xen-unstable.hg.copy/docs/man/xm.pod.1 1969-12-31 16:00:00.000000000 -0800 +++ xen-unstable.hg/docs/man/xm.pod.1 2005-10-28 18:16:34.000000000 -0700 @@ -0,0 +1,254 @@ +=head1 NAME + +xm - Xen management user interface + +=head1 SYNOPSIS + +xm [args] + +=head1 DESCRIPTION + +The B program is the main interface for managing Xen guest domains. The program can be used to create, pause, and shutdown domains. It can also be used to list current domains, enable or pin VCPUs, and attach or detach virtual block devices. The B program relies upon B. The daemon must be running in order for the program to work. + +Domain name can be substituted in the subcommands for Domain id . + +=head1 DOMAIN SUBCOMMANDS + +=over 4 + +=item I + +Attach to domain DomId's console. + +=item I + +Create a domain based on B configuration file. + +=item I + +Terminate domain DomId immediately. + +=item I + +Converts a domain name to a domain id. + +=item I + +Converts a domain id to a domain name. + +=item I [--long] + +Displays command's help message. The long option prints out the complete set of B subcommands. + +=item I [DomId, ...] + +List information about domains. + +=item I + +Set domain maximum memory limit to Mem. Mem is in Megabytes. This is the upper memory mark for how much memory a domain can have. + +=item I + +Set domain's memory, in Megabytes. Mem must be less than or equal to the maximum memory for the domain. + +=item I [Options] + +Migrate a domain to another Host machine. B must be running on other host machine and there must be sufficient resources as well. + +=over 4 + +Additional Options: + + -l, --live Use live migration. + -r, --resource Set resource level. + +=back + +=item I + +Pause a domain's execution. + +=item I [Options] + +Reboot a domain. + +=over 4 + +Additional Options: + + -a, --all reboot all domains. + -w, --wait Wait for shutdown to complete. + +=back + +=item I + +Create a domain from saved state File. + +=item I + +Save domain state to File. Saves domain configuration to File as well. + +=item I [Options] + +Shutdown a domain. + +=over 4 + +Additional Options: + + -a, --all Shutdown all domains. + -H, --halt Shutdown domain without reboot. + -R, --reboot Shutdown and reboot domain. + -w, --wait Wait for shutdown to complete. + +=back + +=item I + +Send a sysrq to a domain. + +=item I + +Unpause a paused domain. + +=item I + +Enable a specific number of VCPUs for a domain. Subcommand only enables or disables already configured VCPUs for domain. + +=item I [DomID] + +Lists VCPU information for a specific domain or all domains if DomID not given. + +=item I + +Sets VCPU to only run on specific CPUs. + +=back + +=head1 XEN HOST SUBCOMMANDS + +=over 4 + +=item I [OPTION] + +Read or clear Xen's message buffer. The buffer contains Xen boot, warning, and error messages. + +=over 4 + +Additional Option: + + -c, --clear Clears Xen's message buffer. + +=back + +=item I + +Get information about Xen host. + +=item I + +Print B log. + +=item I + +Monitor system and domains in real-time. + +=back + +=head1 SCHEDULER SUBCOMMANDS + +=over 4 + +=item I + +Set Borrowed Virtual Time (BVT) scheduler parameters. There are five parameters, which are given in order below. + +=over 4 + +Parameters: + + mcuadv - Minimum Charging Unit (MCU) advance. + warpback - Warp back time allowed. + warpvalue - Warp value. + warpl - Warp maximum limit. + warpu - Unwarped minimum limit. + +=back + +=item I + +Sets the BVT scheduler's context switch allowance. Allow is the minimum time slice allowed to run before being pre-empted. + +=item I + +Set simple sEDF scheduler parameters. Use the following parametersin order. + +=over 4 + +Parameters: + + period - in nanoseconds + slice - in nanoseconds + latency-hint - scaled period if domain is doing heavy I/O + extratime - flag for allowing domain to run in extra time. + weight - another way of setting cpu slice. + +=back + +=back + +=head1 VIRTUAL DEVICE COMMANDS + +=over 4 + +=item I [BackDomId] + +Create a new virtual block device. + +=item I + +Destroy a domain's virtual block device. DevId may either be a device ID or the device name as mounted in the guest. + +=item I + +List virtual block devices for a domain. + +=item I + +Limit the transmission rate of a virtual network interface. + +=item I + +List virtual network interfaces for a domain. + +=back + +=head1 VNET COMMANDS + +=over 4 + +=item I [-l|--long] + +List vnets. + +=item I + +Create a vnet from a config file. + +=item I + +Delete a vnet. + +=back + +=head1 SEE ALSO + +B(5) + +=head1 AUTHOR + + Daniel Stekloff + +=head1 BUGS