Skip to content

Commit

Permalink
Filesystem documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
copy committed Jan 19, 2015
1 parent 478c321 commit 00b9200
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions docs/filesystem.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
A 9p filesystem is supported by the emulator, using a virtio transport. Using
it, files can be exchanged with the guest OS, see
[`create_file`](docs/api.md#create_filestring-file-uint8array-data-functionobject-callback)
and
[`read_file`](docs/api.md#read_filestring-file-functionobject-uint8array-callback). It can
be enabled by passing the following options to `V86Starter`:

```javascript
options.filesystem = {
basefs: "http://localhost/9p/fs.json",
baseurl: "http://localhost/9p/base/",
}
```

Here, `basefs` is a json file created using
[fs2json](https://github.com/copy/fs2json). The base url is the prefix of a url
from which the files are available. For instance, if the 9p filesystem has a
file `/bin/sh`, that file must be accessible from
`http://localhost/9p/base/bin/sh`. If `basefs` and `baseurl` are omitted, an
empty 9p filesystem is created.

The `mount_tag` of the 9p device is `host9p`. In order to mount it in the
guest, use:

```sh
mount -t 9p host9p /mnt/9p/
```

0 comments on commit 00b9200

Please sign in to comment.