"-o defaults"에 대한 현재 기본 "mount" 옵션 세트를 어떻게 확인할 수 있습니까?

"-o defaults"에 대한 현재 기본 "mount" 옵션 세트를 어떻게 확인할 수 있습니까?

man mount, , , , 및 의 -o defaults기본 mount옵션 세트를 포함하는 것으로 설명됩니다 .rwsuiddevexecautonouserasync

mount시스템 커널에서 활성화/비활성화되는 옵션이 -o defaults기본 옵션 세트에 추가/제거 됩니까 mount? 파일 시스템별 기본 옵션에도 동일하게 적용됩니까?

-o defaults검사를 통해 현재 기본 옵션 세트를 어떻게 확인할 수 있나요 ? 단순히 현재 마운트된 모든 파일 시스템을 나열합니다.mount/proc/mounts

man mount

FILESYSTEM-INDEPENDENT MOUNT OPTIONS
       Some of  these  options  are  only  useful  when  they  appear  in  the
       /etc/fstab file.

       Some  of  these  options could be enabled or disabled by default in the
       system kernel.  To  check  the  current  setting  see  the  options  in
       /proc/mounts.   Note that filesystems also have per-filesystem specific
       default mount options (see for  example  tune2fs  -l  output  for  extN
       filesystems).

        ...

        defaults
          Use  the default options: rw, suid, dev, exec, auto, nouser, and
          async.

          Note that the real set of all default mount options  depends  on
          kernel  and  filesystem type.  See the beginning of this section
          for more details.

답변1

그냥 mount출력을 확인 하시겠습니까?

예를 들어, 주어진 ~/tmpfile파일에서 ext4 파일 시스템을 생성합니다.

~$ sudo mount -t ext4 -o defaults tmpfile /media/cdrom
~$ mount|grep /media/cdrom
tmpfile on /media/cdrom0 type ext4 (rw,relatime)

관련 정보