Report on File System Disk Usage
disk_free(mounts = NULL, local = FALSE)A data.frame (tibble) where each row corresponds to a unique disk.
This function queries df -P (POSIX output format) on the system.
## All disks
df <- disk_free()
print(df)
#> # A tibble: 7 × 6
#> filesystem blocks_1024 used available capacity mounted_on
#> <chr> <dbl> <dbl> <dbl> <dbl> <chr>
#> 1 /dev/root 151263856 60671856 90575616 0.41 /
#> 2 tmpfs 8186220 84 8186136 0.01 /dev/shm
#> 3 tmpfs 3274488 1020 3273468 0.01 /run
#> 4 tmpfs 5120 0 5120 0 /run/lock
#> 5 /dev/nvme0n1p16 901520 65016 773376 0.08 /boot
#> 6 /dev/nvme0n1p15 106832 6250 100582 0.06 /boot/efi
#> 7 tmpfs 1637244 12 1637232 0.01 /run/user/1001
## All local disks
df <- disk_free(local = TRUE)
print(df)
#> # A tibble: 7 × 6
#> filesystem blocks_1024 used available capacity mounted_on
#> <chr> <dbl> <dbl> <dbl> <dbl> <chr>
#> 1 /dev/root 151263856 60671860 90575612 0.41 /
#> 2 tmpfs 8186220 84 8186136 0.01 /dev/shm
#> 3 tmpfs 3274488 1020 3273468 0.01 /run
#> 4 tmpfs 5120 0 5120 0 /run/lock
#> 5 /dev/nvme0n1p16 901520 65016 773376 0.08 /boot
#> 6 /dev/nvme0n1p15 106832 6250 100582 0.06 /boot/efi
#> 7 tmpfs 1637244 12 1637232 0.01 /run/user/1001
## /tmp
df <- disk_free(c("/tmp"))
print(df)
#> # A tibble: 1 × 6
#> filesystem blocks_1024 used available capacity mounted_on
#> <chr> <dbl> <dbl> <dbl> <dbl> <chr>
#> 1 /dev/root 151263856 60671860 90575612 0.41 /