LoginSignup
0
0

More than 5 years have passed since last update.

[Linux][mount] 対応しているファイルシステムの一覧を表示する

Posted at

mount -t<filesystem> で指定できるファイルシステムのタイプの一覧を取得する方法メモ

確認方法

結論としては以下のように /proc/filesystems を確認すればよかった。

有効なファイルシステムのタイプ一覧を取得
$ cat /proc/filesystems

実行例

Ubuntu 16.04 (kernel 4.4.0-45) にて確認した結果は以下のようになった。

ubuntu16.04で実行した例
$ cat /proc/filesystems 
nodev   sysfs
nodev   rootfs
nodev   ramfs
nodev   bdev
nodev   proc
nodev   cpuset
nodev   cgroup
nodev   tmpfs
nodev   devtmpfs
nodev   debugfs
nodev   tracefs
nodev   securityfs
nodev   sockfs
nodev   bpf
nodev   pipefs
nodev   devpts
    ext3
    ext2
    ext4
    squashfs
nodev   hugetlbfs
    vfat
nodev   ecryptfs
    fuseblk
nodev   fuse
nodev   fusectl
nodev   pstore
nodev   mqueue
nodev   autofs
nodev   vboxsf

KConfigの設定によって、有効になっているファイルシステムは変わる様子。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0