Disks and Filesystem Permisisons

Tools covered:

  1. dd

  2. gzip

  3. fdisk

  4. free

  5. swapoff/swapon

  6. find

  7. chmod

  8. find

Syntax: find [location] [type] [what]

[location] -> Here we put the path where we want to search the item [type] -> Here we put the type of item we are searching for by specifying using a flag like f or d . [what] -> Here we define the expression of item we are searching for.

Example: find . -type f "Tekegram*" In the above command we use find to search in the present directory by putting .

Last updated