fuse: Document the fstype parameter

This commit is contained in:
Dave Vasilevsky
2013-05-08 21:16:51 -04:00
committed by Richard W.M. Jones
parent f83df69bec
commit a820e9e3bd
4 changed files with 16 additions and 6 deletions

View File

@@ -125,7 +125,7 @@ usage (int status)
" --keys-from-stdin Read passphrases from stdin\n"
" --listen Listen for remote commands\n"
" --live Connect to a live virtual machine\n"
" -m|--mount dev[:mnt[:opts]] Mount dev on mnt (if omitted, /)\n"
" -m|--mount dev[:mnt[:opts[:fstype]]] Mount dev on mnt (if omitted, /)\n"
" --network Enable network\n"
" -N|--new type Create prepared disk (test1.img, ...)\n"
" -n|--no-sync Don't autosync\n"

View File

@@ -313,9 +313,9 @@ L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below.
Connect to a live virtual machine.
(Experimental, see L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>).
=item B<-m dev[:mountpoint[:options]]>
=item B<-m dev[:mountpoint[:options[:fstype]]]>
=item B<--mount dev[:mountpoint[:options]]>
=item B<--mount dev[:mountpoint[:options[:fstype]]]>
Mount the named partition or logical volume on the given mountpoint.
@@ -344,6 +344,11 @@ filesystem can support them:
Using this flag is equivalent to using the C<mount-options> command.
The fourth part of the parameter is the filesystem driver to use, such
as C<ext3> or C<ntfs>. This is rarely needed, but can be useful if
multiple drivers are valid for a filesystem (eg: C<ext2> and C<ext3>),
or if libguestfs misidentifies a filesystem.
=item B<--network>
Enable QEMU user networking in the guest.

View File

@@ -117,7 +117,7 @@ usage (int status)
" --help Display help message and exit\n"
" --keys-from-stdin Read passphrases from stdin\n"
" --live Connect to a live virtual machine\n"
" -m|--mount dev[:mnt[:opts]] Mount dev on mnt (if omitted, /)\n"
" -m|--mount dev[:mnt[:opts[:fstype]] Mount dev on mnt (if omitted, /)\n"
" --no-fork Don't daemonize\n"
" -n|--no-sync Don't autosync\n"
" -o|--option opt Pass extra option to FUSE\n"

View File

@@ -254,9 +254,9 @@ to try to read passphrases from the user by opening C</dev/tty>.
Connect to a live virtual machine.
(Experimental, see L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>).
=item B<-m dev[:mountpoint[:options]]>
=item B<-m dev[:mountpoint[:options[:fstype]]>
=item B<--mount dev[:mountpoint[:options]]>
=item B<--mount dev[:mountpoint[:options[:fstype]]]>
Mount the named partition or logical volume on the given mountpoint
B<in the guest> (this has nothing to do with mountpoints in the host).
@@ -274,6 +274,11 @@ filesystem can support them:
-m /dev/sda1:/:acl,user_xattr
The fourth part of the parameter is the filesystem driver to use, such
as C<ext3> or C<ntfs>. This is rarely needed, but can be useful if
multiple drivers are valid for a filesystem (eg: C<ext2> and C<ext3>),
or if libguestfs misidentifies a filesystem.
=item B<--no-fork>
Don't daemonize (or fork into the background).