Skip to Content
Linux Administration Cookbook
book

Linux Administration Cookbook

by Adam K. Dean
December 2018
Beginner
826 pages
22h 54m
English
Packt Publishing
Content preview from Linux Administration Cookbook

The filesystem check

If you're still uncertain, you can quickly check the type of filesystem being used for slash-root, /:

$ mount | grep "/ "/dev/mapper/VolGroup00-LogVol00 on / type xfs (rw,relatime,seclabel,attr2,inode64,noquota)

XFS is commonly found on Linux systems, specifically RHEL and CentOS:

$ mount | grep "/ "/dev/ada0s1a on / (ufs, local, journaled soft-updates)

The Unix file system (UFS) is usually seen on FreeBSD boxes (alongside ZFS, if you've got the RAM for it):

$ mount | grep "/ "/dev/wd0a on / type ffs (local)

FFS? You're joking... no, it's the fast file system (FFS), and it's commonly used on OpenBSD boxes:

FFS and UFS have the same heritage, though the code base isn't identical.
$ mount | grep "/ "/ on rpool/ROOT/openindiana ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Practical Linux Security Cookbook - Second Edition

Practical Linux Security Cookbook - Second Edition

Tajinder Kalsi
Mastering Linux Administration

Mastering Linux Administration

Alexandru Calcatinge, Julian Balog

Publisher Resources

ISBN: 9781789342529Supplemental Content