Subject: | Add some more special filesystems to Linux module |
Running the example code under "Method 1" from the POD returns the
following:
/ is a ext3 filesystem mounted on /dev/disk/by-uuid/xxxx-xxx-xxx
/dev is a tmpfs filesystem mounted on udev
/dev/pts is a devpts filesystem mounted on none
/dev/shm is a tmpfs filesystem mounted on none
/home/reed/.gvfs is a fuse.gvfs-fuse-daemon filesystem mounted on
gvfs-fuse-daemon
/lib/init/rw is a tmpfs filesystem mounted on none
/media/sda1 is a fuseblk filesystem mounted on /dev/sda1
/media/sda2 is a fuseblk filesystem mounted on /dev/sda2
/proc is a proc filesystem mounted on none
/proc/fs/nfsd is a nfsd filesystem mounted on nfsd
/proc/sys/fs/binfmt_misc is a binfmt_misc filesystem mounted on binfmt_misc
/sys is a sysfs filesystem mounted on none
/sys/fs/fuse/connections is a fusectl filesystem mounted on none
/sys/kernel/debug is a debugfs filesystem mounted on none
/sys/kernel/security is a securityfs filesystem mounted on none
/var/lock is a tmpfs filesystem mounted on none
/var/run is a tmpfs filesystem mounted on none
none is a swap filesystem mounted on UUID=xxxx-xxxx-xxx-xxx
From that list, should add the following to %special_fs in
Sys::Filesystem::Linux:
* binfmt_misc
* securityfs
* debugfs
* fusectl
* fuse.gvfs-fuse-daemon
Also, 'devpts' is specified twice, so should drop one of them.
This is Sys::Filesystem 1.27 under perl v5.10.0 on Ubuntu 9.10.
Once I figure out where the source code is located, I'll supply a patch.