-
Recent Posts
- How to Automatically Renew LetsEncrypt Certificates and Restart Your Web Server
- How to Create an Admin User With All Privileges on MariaDB / MySQL
- How to Obtain a Let’s Encrypt SSL Certificate Using the WebRoot Plugin
- List all IPs connected to your server along with connection count
- How to restore network / internet access after replacing your NIC or Motherboard in Linux
Recent Comments
Archives
Categories
Meta
Tag Archives: recursively chmod only files
Recursively CHMOD Only Files or Directories via Command Line
Using the commands below, you can recursively chmod a large number of files or directories. Directories find . -type d -exec chmod 755 {} \; Files find . -type f -exec chmod 644 {} \; Important: Remember to the command … Continue reading