[Bug 240889] mount -t nozfs, noufs, nodevfs, notmpfs - does not work as advertised in man page

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat Sep 28 01:59:38 UTC 2019


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240889

            Bug ID: 240889
           Summary: mount -t nozfs,noufs,nodevfs,notmpfs - does not work
                    as advertised in man page
           Product: Base System
           Version: 12.1-RELEASE
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: bin
          Assignee: bugs at FreeBSD.org
          Reporter: vermaden at interia.pl

>From man 8 mount page:


  -t [no]type[,type ...]
      The argument following the -t is used to indicate the file system
      type.  The type ufs is the default.  The -t option can be used to
      indicate that the actions should only be taken on file systems of
      the specified type.  More than one type may be specified in a
      comma separated list.  The list of file system types can be
      prefixed with no to specify the file system types for which
      action should not be taken.  For example, the mount command:

            mount -a -t nonfs,nullfs

      mounts all file systems except those of type NFS and NULLFS.

      The default behavior of mount is to pass the -t option directly
      to the nmount(2) system call in the fstype option.

      However, for the following file system types: cd9660, mfs,
      msdosfs, nfs, nullfs, smbfs, udf, and unionfs mount will not call
      nmount(2) directly and will instead attempt to execute a program
      in /sbin/mount_type where type is replaced by the file system
      type name.  For example, nfs file systems are mounted by the
      program /sbin/mount_nfs.

      Most file systems will be dynamically loaded by the kernel if not
      already present, and if the kernel module is available.


Default mount with all mounts:

% mount 
zroot/ROOT/12.1 on / (zfs, local, noatime, nfsv4acls)
devfs on /dev (devfs, local, multilabel)
linprocfs on /compat/linux/proc (linprocfs, local)
tmpfs on /compat/linux/dev/shm (tmpfs, local)
zroot/tmp on /tmp (zfs, local, noatime, nosuid, nfsv4acls)
zroot/home on /home (zfs, local, noatime, nfsv4acls)
zroot/var/log on /var/log (zfs, local, noatime, noexec, nosuid, nfsv4acls)
zroot/var/crash on /var/crash (zfs, local, noatime, noexec, nosuid, nfsv4acls)
zroot/jail on /jail (zfs, local, noatime, nfsv4acls)
zroot/var/mail on /var/mail (zfs, local, nfsv4acls)
zroot/usr/src on /usr/src (zfs, local, noatime, nfsv4acls)
zroot/usr/ports on /usr/ports (zfs, local, noatime, nosuid, nfsv4acls)
zroot/var/audit on /var/audit (zfs, local, noatime, noexec, nosuid, nfsv4acls)
zroot/var/tmp on /var/tmp (zfs, local, noatime, nosuid, nfsv4acls)
/dev/label/ASD on /mnt/tmp (msdosfs, local)
/dev/md0s1a on /mnt/ufs (ufs, local)
/dev/fuse on /mnt/ntfs (fusefs)
/dev/md0s1f on /mnt/ufs.other (ufs, local)
/dev/gpt/OTHER on /mnt/fat.other (msdosfs, local)

Excluding single filesystem works:

% mount -t nozfs
devfs on /dev (devfs, local, multilabel)
linprocfs on /compat/linux/proc (linprocfs, local)
tmpfs on /compat/linux/dev/shm (tmpfs, local)
/dev/label/ASD on /mnt/tmp (msdosfs, local)
/dev/md0s1a on /mnt/ufs (ufs, local)
/dev/fuse on /mnt/ntfs (fusefs)
/dev/md0s1f on /mnt/ufs.other (ufs, local)
/dev/gpt/OTHER on /mnt/fat.other (msdosfs, local)

Excluding multiple filesystem does not work (but should according to man page):

% mount -t nozfs,noufs,nodevfs,notmpfs
devfs on /dev (devfs, local, multilabel)
linprocfs on /compat/linux/proc (linprocfs, local)
tmpfs on /compat/linux/dev/shm (tmpfs, local)
/dev/label/ASD on /mnt/tmp (msdosfs, local)
/dev/md0s1a on /mnt/ufs (ufs, local)
/dev/fuse on /mnt/ntfs (fusefs)
/dev/md0s1f on /mnt/ufs.other (ufs, local)
/dev/gpt/OTHER on /mnt/fat.other (msdosfs, local)


Regards,
vermaden

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-bugs mailing list