From 1a408dcb3a4531840b23dc4ba1fb46ae272d4304 Mon Sep 17 00:00:00 2001 From: Nirjas Jakilim Date: Tue, 11 Oct 2022 21:58:15 +0600 Subject: [PATCH] Added information about df command (#2413) * Added information about df command * Update content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/138-df.md Co-authored-by: Kamran Ahmed --- .../101-live-in-terminal/138-df.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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 c5c0e75bf..878919a2f 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 +1,14 @@ -# Df \ No newline at end of file +# 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. + +Useful Links +df man page +df command with examples