Last active
January 17, 2025 18:14
-
-
Save djismgaming/87eb975ed9ccc0fb6ddbd82c4f408eda to your computer and use it in GitHub Desktop.
omv custom fstab mapping options in /etc/default/openmediavault
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /etc/default/openmediavault | |
| # make edits before adding filesystems to omv | |
| OMV_FSTAB_MNTOPS_EXT2="defaults,noatime,nodiratime,nofail,user_xattr,acl" | |
| OMV_FSTAB_MNTOPS_EXT3="defaults,noatime,nodiratime,nofail,user_xattr,acl" | |
| OMV_FSTAB_MNTOPS_EXT4="defaults,noatime,nodiratime,nofail,user_xattr,acl" | |
| OMV_FSTAB_MNTOPS_JFS="defaults,nofail" | |
| OMV_FSTAB_MNTOPS_XFS="defaults,nofail" | |
| OMV_FSTAB_MNTOPS_VFAT="defaults,nofail" | |
| OMV_FSTAB_MNTOPS_NTFS="defaults,nofail" | |
| OMV_FSTAB_MNTOPS_HFSPLUS="defaults,nofail,force" | |
| OMV_FSTAB_MNTOPS_BTRFS="defaults,nofail" | |
| OMV_FSTAB_MNTOPS_ISO9660="ro" | |
| OMV_FSTAB_MNTOPS_UDF="ro" | |
| # if changes are after adding filesystems to omv | |
| # edit /etc/openmediavault/config.xml | |
| # find <mntent> | |
| # edit fstab options there | |
| # defaults,noatime,nodiratime,nofail,user_xattr,acl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment