Advertisement
Guest User

df example

a guest
Aug 17th, 2022
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. bash-5.1$ df -T
  2. Filesystem Type 1K-blocks Used Available Use% Mounted on
  3. tmpfs tmpfs 1632596 3396 1629200 1% /run
  4. /dev/mapper/ubuntu--vg-root ext4 952742108 494528812 409789976 55% /
  5. tmpfs tmpfs 8162976 78392 8084584 1% /dev/shm
  6. tmpfs tmpfs 5120 4 5116 1% /run/lock
  7. tmpfs tmpfs 8162976 0 8162976 0% /run/qemu
  8.  
  9. bash-5.1$ df -t ext4
  10. Filesystem 1K-blocks Used Available Use% Mounted on
  11. /dev/mapper/ubuntu--vg-root 952742108 494541004 409777784 55% /
  12.  
  13. bash-5.1$ type df
  14. df is hashed (/usr/bin/df)
  15.  
  16. bash-5.1$ command df -T
  17. Filesystem Type 1K-blocks Used Available Use% Mounted on
  18. tmpfs tmpfs 1632596 2932 1629664 1% /run
  19. /dev/mapper/ubuntu--vg-root ext4 952742108 494588160 409730628 55% /
  20. tmpfs tmpfs 8162976 74292 8088684 1% /dev/shm
  21. tmpfs tmpfs 5120 4 5116 1% /run/lock
  22. tmpfs tmpfs 8162976 0 8162976 0% /run/qemu
  23.  
  24. bash-5.1$ df --version
  25. df (GNU coreutils) 8.32
  26. Copyright (C) 2020 Free Software Foundation, Inc.
  27. License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
  28. This is free software: you are free to change and redistribute it.
  29. There is NO WARRANTY, to the extent permitted by law.
  30.  
  31. Written by Torbjorn Granlund, David MacKenzie, and Paul Eggert.
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement