Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

set all permissions to folder in ubuntu

sudo chmod -R a+rwx path/directory
Comment

give permission to file ubuntu

sudo chmod 777 /path
Comment

give permission to user in ubuntu

sudo chown -R testuser:testuser /var/www/test/public_html
Comment

grant all the permission to the user ubuntu

The simplest way is to use chown:

sudo chown -R testuser:testuser /var/www/test/public_html
Comment

giving permission to folder in ubuntu

chmod -R a+rwx path
Comment

ubunto give permission for a user

# Make group "testuser" and user "testuser" the owner of the file "public_html"
sudo chown -R testuser:testuser /var/www/test/public_html
Comment

PREVIOUS NEXT
Code Example
Shell :: get podman ubuntu 
Shell :: install ruby 
Shell :: git push -u origin master 
Shell :: pesquisar codigo commit 
Shell :: run springboot as a service linux 
Shell :: git increase buffer size 
Shell :: install plasma kde manjaro 
Shell :: gitignore node_modules 
Shell :: check if systemctl service is running linux 
Shell :: video editor linux 
Shell :: sort numerically in linux ls 
Shell :: what .net framework do i have installed 
Shell :: restart wsl 
Shell :: CMake Error: Could not find CMAKE_ROOT !!! 
Shell :: kill all process 
Shell :: undo previous commit but keep changes 
Shell :: git add email 
Shell :: put bash script execution output in a file 
Shell :: install gatsby typography 
Shell :: linux get user uid 
Shell :: grep nth line 
Shell :: IlluminateHttpExceptionsPostTooLargeException Ubuntu 
Shell :: zsh: command not found: npm 
Shell :: windows service start 
Shell :: git tag delete 
Shell :: taskbar directory windows 
Shell :: iptable port forward 
Shell :: git commit current changes to existing branch 
Shell :: check and verify git version 
Shell :: git change comment 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =