diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-12-18 18:31:45 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-12-18 18:31:45 +0000 |
commit | 2c6cadd49ee86bf2df6bf61c614258dfd97f7115 (patch) | |
tree | 5a9903a40b0229fd2f4d216f86bf62aab2f0fb3f /qemu-doc.texi | |
parent | a046433a161a1f554be55df8421d92cbdc52779f (diff) | |
download | qemu-2c6cadd49ee86bf2df6bf61c614258dfd97f7115.zip |
update
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1718 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'qemu-doc.texi')
-rw-r--r-- | qemu-doc.texi | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/qemu-doc.texi b/qemu-doc.texi index f970b2a59e..41227977b3 100644 --- a/qemu-doc.texi +++ b/qemu-doc.texi @@ -755,6 +755,39 @@ command (or @key{C-a s} in the serial console). @include qemu-img.texi +@subsection Virtual FAT disk images + +QEMU can automatically create a virtual FAT disk image from a +directory tree. In order to use it, just type: + +@example +qemu linux.img -hdb fat:/my_directory +@end example + +Then you access access to all the files in the @file{/my_directory} +directory without having to copy them in a disk image or to export +them via SAMBA or NFS. The default access is @emph{read-only}. + +Floppies can be emulated with the @code{:floppy:} option: + +@example +qemu linux.img -fda fat:floppy:/my_directory +@end example + +A read/write support is available for testing (beta stage) with the +@code{:rw:} option: + +@example +qemu linux.img -fda fat:floppy:rw:/my_directory +@end example + +What you should @emph{never} do: +@itemize +@item use non-ASCII filenames ; +@item use "-snapshot" together with ":rw:" ; +@item expect it to work when loadvm'ing. +@end itemize + @section Network emulation QEMU can simulate several networks cards (NE2000 boards on the PC |