- Command 'df' Short of "desk free". used to check available disk on system. Displays the information of file system device names, disk blocks, total disk space used, available disk space, percentage of usage and mount points on a file system
$ df
- With df add -h to display Disk Space in Human Readable Format like in MB and GB.
$ df -h
- Show only your home file system information.
$ df -h /home
- Change directory/Folder.
$ cd /folder_name
- Show just the names of files and directories existing in your present directory.
$ ls
- Show list of all the files and directories existing along with the details like permissions, ownership, size etc.
$ ll
Top comments (0)