add content for df linux command (#2384)

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
pull/2419/head
Stephen 2 years ago committed by GitHub
parent 9e8c426ef6
commit 62ec40676e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/138-df.md

@ -1,13 +1,6 @@
# df # df
`df` is Linux/Unix command used to show the disk usage & information. df is an abbreviation for `disk free`. df displays the amount of disk space available for a particular file system partition. If no name is given, it shows the space available on all currently mounted partitions. `df` is a standard Unix command used to display the amount of available disk space for file systems on which the invoking user has appropriate read access. df is typically implemented using the statfs or statvfs system calls.
The basic syntax of the command is like the following:
`df <mounted partition name>`
Example usage:
`df /tmp` to show the available space of /tmp partition.
or `df` to show information about the partitions of the whole system.
<ResourceGroupTitle>Useful Links</ResourceGroupTitle> <ResourceGroupTitle>Useful Links</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Man page' href='https://linux.die.net/man/1/df'>df man page</BadgeLink> <BadgeLink colorScheme='blue' badgeText='Man page' href='https://linux.die.net/man/1/df'>df man page</BadgeLink>

Loading…
Cancel
Save