Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

give permission to file ubuntu

sudo chmod 777 /path
Comment

giving permission to folder in ubuntu

chmod -R a+rwx path
Comment

assign permission to files and folder ubuntu separate

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 {} ;
Comment

PREVIOUS NEXT
Code Example
Shell :: rename all files starting with in linux 
Shell :: connect terminal to server 
Shell :: install pycharm ubuntu 
Shell :: getcomposer.org download 
Shell :: poetry requirements 
Shell :: raspberry pi remote desktop 
Shell :: docker file entrypoint script shell 
Shell :: bash for file in directory 
Shell :: print first word of each line by grep 
Shell :: export docker image 
Shell :: git pull branch you are not on 
Shell :: docker run --entrypoint bash 
Shell :: pdf file 30mb 
Shell :: nano enable syntax highlighting 
Shell :: flutter firebase apk release google sign in not working 
Shell :: git remove file from repository 
Shell :: uninstall awesome window manager ubuntu 
Shell :: cartesian product file shell 
Shell :: nlog linux folder 
Shell :: setting ssh for github 
Shell :: brownie coverage 
Shell :: get symbols from library 
Shell :: ufw enable no disturb 
Shell :: what is guthub 
Shell :: Check status service Apache FreeBSD 
Shell :: colcon build number of threads 
Shell :: git delete branch remote 
Shell :: http-server run pwa 
Shell :: windows build support installation failed unity linux 
Shell :: rubocop command to run auto correct 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =