All public logs

Jump to navigation Jump to search

Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 16:21, 21 February 2023 Qljca talk contribs created page Inodes (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...")