Inodes: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

21 February 2023

  • curprev 16:2116:21, 21 February 2023Qljca talk contribs 526 bytes +526 Created page with "==Find inodes== <pre> find . -printf "%h\n" | cut -d/ -f-2 | sort | uniq -c | sort -rn or echo "Inode usage for $(pwd)" ; for d in `find -maxdepth 1 -type d | cut -d\/ -f2 | grep -xv . | sort`; do c=$(find $d | wc -l) ; printf "$c\t\t- $d\n" ; done ; printf "Total: \t\t$(find $(pwd) | wc -l)\n" == Inodes not displaying correctly== <pre> Try to enable quotas in WHM and then run /scripts/fixquotas </pre> ==Inodes filling up in .cagefs== <pre> Navigate to PHP selector a..."