diff --git a/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/138-df.md b/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/138-df.md index 878919a2f..7d570fbd3 100644 --- a/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/138-df.md +++ b/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/138-df.md @@ -1,13 +1,6 @@ # 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. - -The basic syntax of the command is like the following: -`df ` - -Example usage: -`df /tmp` to show the available space of /tmp partition. -or `df` to show information about the partitions of the whole system. +`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. Useful Links df man page