Last active
July 2, 2019 16:54
-
-
Save FlintSable/0673869c75e0eebd9bd39f1865a056ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # list the files and file sizes in current directory | |
| du -h --max-depth=1 | |
| # list the files and file sizes in a specific directory | |
| du -h --max-depth=1 /usr | |
| # swap space | |
| swapon -s | |
| # Listing all the partitions on the hard disk and their mount points by using the mount command. | |
| mount |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment