1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
.\" SPDX-License-Identifier: 0BSD
.\"
.Dd October 24, 2024
.Dt FUSE-EXT2 1
.Os fuse2fs
.
.Sh NAME
.Nm fuse-ext2
.Nd fuse2fs compatibility wrapper
.Sh SYNOPSIS
.Nm
.Op Fl hv
.Oo Fl o Cm ro Ns \&| Ns Cm force Ns \&| Ns Cm allow_others Ns Oo ,… Oc Oc Ns …
.Ar device Ns \&| Ns Ar image
.Ar mountpoint
.
.Sh DESCRIPTION
This wrapper provides the
.Nm
interface via
.Xr fuse2fs 1 ,
which you should migrate to instead.
.
.Sh OPTIONS
.Bl -tag -compact -width ".Fl o , -options Ar option Ns Op ,…"
.It Fl h , -help
Show usage string.
.
.It Fl v , -verbose
Ignored.
.
.It Fl o , -options Ar option Ns Op ,…
.Xr mount.fuse3 8
options, of which these are handled specially:
.Bl -tag -compact -offset 4n -width ".Cm silent"
.It Cm ro
Mount read-only.
.
.It Cm rw
Mount read-write
.Em if
.Cm force
also given.
This is the default.
.
.It Cm rw+
Same as
.Fl o Cm rw , Ns Cm force
.It Cm silent
Ignored.
.It Cm force
If
.Cm rw ,
mount read-write.
.El
all other
.Ar option Ns s
are forwarded to
.Nm fuse2fs
directly.
.Pp
If
.Cm rw
but not
.Cm force ,
the mount is read-only and a warning is issued.
.El
|