53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "mount",
|
|
"section": 1,
|
|
"title": "mount Hyperdrive-backed filesystems",
|
|
"synopsis": [
|
|
"mount",
|
|
"mount [-t hyperdrive] [-o ro] <source-key|local> </mnt/label>"
|
|
],
|
|
"description": "List current mounts or mount a Hyperdrive into /mnt/<label>. The source may be 'local' (create writable drive) or a Hyperdrive key (readonly add).",
|
|
"options": [
|
|
{
|
|
"flag": "-t hyperdrive",
|
|
"meaning": "Filesystem type (only hyperdrive is supported)."
|
|
},
|
|
{
|
|
"flag": "-o ro",
|
|
"meaning": "Readonly mount hint for key-backed sources."
|
|
}
|
|
],
|
|
"keywords": [
|
|
"mount",
|
|
"hyperdrive",
|
|
"hdms",
|
|
"vfs",
|
|
"bare-os",
|
|
"coreutils"
|
|
],
|
|
"examples": [
|
|
{
|
|
"caption": "list mounts",
|
|
"code": "mount"
|
|
},
|
|
{
|
|
"caption": "create writable local mount",
|
|
"code": "mount local /mnt/work"
|
|
},
|
|
{
|
|
"caption": "attach readonly key",
|
|
"code": "mount -t hyperdrive -o ro z32key... /mnt/shared"
|
|
}
|
|
],
|
|
"seeAlso": [
|
|
{
|
|
"name": "umount",
|
|
"section": 1
|
|
},
|
|
{
|
|
"name": "hdms",
|
|
"section": 1
|
|
}
|
|
]
|
|
}
|