Problem: unable to execute /bin/rm: Success Posted on October 21, 2015 by James In Linux environment, when you want to delete the files under one directory, you might see: “sudo: unable to execute /bin/rm: Success” Reason: too many files under the directory Solution: sudo find . -name ‘*’ -exec rm {} \;