how can i list/display the mounted partitions file system type in linux, i tried df -h it shows only mounted partitions but not showing the file system type. please share commands to check this on CLI...
asked Oct 16, 2017
2 Answer
0
df -Th will shows mounted partitions file system type and other alternative commands i tried cat /proc/mounts | awk '{print$3}'.