"D. Stimits" wrote:
>
> This seems strangely simple, and possibly absurd to ask, but now that I
> have a system running with xfs, I have to wonder if there is some
> fast/simple way to sit down at any linux machine and find out what
> filesystem type it runs on a particular mount point? df, does not say,
> and fdisk only mentions linux native. For ext2 there is the lost+found
> directory as a clue, but I don't know if maybe some other future system
> might also have this directory; add to this that migrating an old
> filesystem can leave a lost+found on the new one as an artifact, so it
> really is not a good clue. What is the simple means to know that a
> machine I'm sitting at as an administrator (but not installed by me) is
> running xfs or any other filesystem type?
>
> D. Stimits, stimits@xxxxxxxxxx
how about "mount" command?
[thang@pissboy thang]$ mount
/dev/hda5 on / type xfs (rw)
none on /proc type proc (rw)
/dev/hda6 on /xfs type xfs (rw)
/dev/hda3 on /reiser type reiserfs (rw)
/dev/hda1 on /win type vfat (rw)
/dev/hda2 on /ext2 type ext2 (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
cheers!
|