You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mount a directory tree by adding a similar line to /etc/fstab: /usr/local/bin/rofs-filtered /the/read/write/device /the/read/only/mount/point fuse defaults,allow_other 0 0
on my ubuntu 18.04 mount and fstab didn't agree with that and threw an error: mount: /etc/fstab: parse error at line ... -- ignored.
fstab can take at most 6 fields per line: [Device] [Mount Point] [File System Type] [Options] [Dump] [Pass]
but the above example gave 7, by splitting the [Device] field into 2 string: /usr/local/bin/rofs-filtered and /the/read/write/device
fstab can take something like exec#src-path as a [Device] field, such as sshfs#user@server:/share, so maybe rofs-filtered#/the/source/path is acceptable for fstab, which i haven't tried yet.
The text was updated successfully, but these errors were encountered:
the README.md says:
on my ubuntu 18.04
mount
andfstab
didn't agree with that and threw an error:mount: /etc/fstab: parse error at line ... -- ignored
.fstab can take at most 6 fields per line:
[Device] [Mount Point] [File System Type] [Options] [Dump] [Pass]
but the above example gave 7, by splitting the
[Device]
field into 2 string:/usr/local/bin/rofs-filtered
and/the/read/write/device
fstab can take something like
exec#src-path
as a[Device]
field, such assshfs#user@server:/share
, so mayberofs-filtered#/the/source/path
is acceptable for fstab, which i haven't tried yet.The text was updated successfully, but these errors were encountered: