Horje
ubuntu change permissions on folder and subfolders Code Example
ubuntu change permissions on folder and subfolders
# To change all the directories to 755 (drwxr-xr-x):
find /opt/lampp/htdocs -type d -exec chmod 755 {} \;

# To change all the files to 644 (-rw-r--r--):
find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
linux give permission to folder
sudo chmod -R a+rwx /path/to/folder




Shell

Related
install react 16 Code Example install react 16 Code Example
check redis server status Code Example check redis server status Code Example
ufw allow http and httpw connections Code Example ufw allow http and httpw connections Code Example
errors were encountered while processing: mysql-server-5.7 mysql-server e: sub-process /usr/bin/dpkg returned an error code (1) Code Example errors were encountered while processing: mysql-server-5.7 mysql-server e: sub-process /usr/bin/dpkg returned an error code (1) Code Example
installing redis in centos 7 Code Example installing redis in centos 7 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14