Tuesday, April 30, 2024

How to Chmod 777 all Subfolders of /var/www

sudo chmod -R 777 /var/www


No comments:

Post a Comment

Linux command to find user who failed to login from pop/imap

 journalctl -u dovecot -g "auth failed" grep -i "auth failed" /var/log/mail.log | grep -E "imap|pop" journalct...