~ubuntu-branches/ubuntu/quantal/virtinst/quantal-proposed

« back to all changes in this revision

Viewing changes to man/en/virt-install.pod.in

  • Committer: Bazaar Package Importer
  • Author(s): Guido Günther
  • Date: 2009-12-07 10:04:22 UTC
  • mto: (1.6.3 sid)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20091207100422-2izjffd5ljvqun47
Tags: upstream-0.500.1
Import upstream version 0.500.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
Optimize the guest configuration for a type of operating system (ex. 'linux',
124
124
'windows'). This will attempt to pick the most suitable ACPI & APIC settings,
125
125
optimally supported mouse drivers, virtio, and generally accommodate other
126
 
operating system quirks. See C<--os-variant> for valid options.
 
126
operating system quirks.
 
127
 
 
128
By default, virt-install will attempt to auto detect this value from
 
129
the install media (currently only supported for URL installs). Autodetection
 
130
can be disabled with the special value 'none'
 
131
 
 
132
See C<--os-variant> for valid options.
127
133
 
128
134
=item --os-variant=OS_VARIANT
129
135
 
130
136
Further optimize the guest configuration for a specific operating system
131
137
variant (ex. 'fedora8', 'winxp'). This parameter is optional, and does not
132
 
require an C<--os-type> to be specified. Valid values are:
 
138
require an C<--os-type> to be specified.
 
139
 
 
140
By default, virt-install will attempt to auto detect this value from
 
141
the install media (currently only supported for URL installs). Autodetection
 
142
can be disabled with the special value 'none'.
 
143
 
 
144
Valid values are:
133
145
 
134
146
::VARIANT VALUES::
135
147
 
365
377
 
366
378
    --disk opt1=val1,opt2=val2,...
367
379
 
368
 
To specify media, one of the following options is required:
 
380
To specify media, the command can either be:
 
381
 
 
382
    --disk /some/storage/path,opt1=val1
 
383
 
 
384
or explicitly specify one of the following arguments:
369
385
 
370
386
=over 4
371
387
 
435
451
'writethrough' provides read caching. 'writeback' provides
436
452
read and write caching.
437
453
 
 
454
=item B<format>
 
455
 
 
456
Image format to be used if creating managed storage. For file volumes, this
 
457
can be 'raw', 'qcow2', 'vmdk', etc. See format types in
 
458
L<http://libvirt.org/storage.html> for possible values.
 
459
 
438
460
=back
439
461
 
440
462
See the examples section for some uses. This option deprecates C<--file>,
564
586
 
565
587
=item  -k KEYMAP, --keymap=KEYMAP
566
588
 
567
 
Request that the virtual VNC console be configured to run with a non-English
568
 
keyboard layout.
 
589
Request that the virtual VNC console be configured to run with a specific
 
590
keyboard layout. If the special value 'local' is specified, virt-install
 
591
will attempt to configure to use the same keymap as the local system. A value
 
592
of 'none' specifically defers to the hypervisor. Default behavior is
 
593
hypervisor specific, but typically is the same as 'local'.
569
594
 
570
595
=item  --sdl
571
596
 
705
730
  # virt-install \
706
731
       --name demo
707
732
       --ram 512
708
 
       --disk path=/home/user/VMs/mydisk.img
 
733
       --disk /home/user/VMs/mydisk.img
709
734
       --import
710
735
 
711
736
=head1 AUTHORS