mounts

System mounted devices and filesystems (not process specific).

Platform support

Please be aware that some queries can only be run against certain platforms. Below is a list of the supported platforms that this query supports. Zercurity will automatically pause queries from running if errors are detected. Running a query against an unsupported platform will result in the following error: no such table: mounts

  • Linux
  • Mac OSX

Table schema

Name Type Description
device TEXT Mounted device
device_alias TEXT Mounted device alias
path TEXT Mounted device path
type TEXT Mounted device type
blocks_size BIGINT Block size in bytes
blocks BIGINT Mounted device used blocks
blocks_free BIGINT Mounted device free blocks
blocks_available BIGINT Mounted device available blocks
inodes BIGINT Mounted device used inodes
inodes_free BIGINT Mounted device free inodes
flags TEXT Mounted device flags

Query examples

Select all the results for the given table.

SELECT * FROM mounts;