The Zimbra server contains Postfix, MySQL, OpenLDAP, ClamAV, and Spam-Assassin, Calendar, and various other features. Zimbra provides a paid option as well as an open source version. The first command in Zimbra mail server which we need to care about zimbra server service status. All services should be running on server. If any of service […]
Archives for August 2021
How to Find and Delete Empty Directories and Files in Linux
1. Find empty directories in the current directory using find -empty: $ find . -type d -empty 2. Use the following command to remove all empty directories under the current directory: $ find . -type d -empty -exec rmdir {} \; 3. Find empty files in the current directory using find -empty: $ find . […]