give permission to /var/www

57,335

Solution 1

use

`sudo chmod 755 /path/your/folder`

provide your password

or use this for assigning permissions recursively for sub directories.

sudo chmod -R 755 /pat/your/folder

or open nautilus with permission by

sudo nautilus 

and go to your desired folder ,right click on it and finally change its permissions as per your need.

to see permission allowed use

ls -l

it will show permissions of all the folders in Working Directory.

Solution 2

Use

sudo chmod 755 /var/www/

sudo gives you administrative permission as /var is under root directory.

Share:
57,335

Related videos on Youtube

Zeb
Author by

Zeb

Updated on September 18, 2022

Comments

  • Zeb
    Zeb over 1 year

    When I write this to give permission to www directory:

    zeb@zeb-Lenovo-B570:/var$ chmod 251 www/
    zeb@zeb-Lenovo-B570:/var/www$ ls
    

    Its gives error:

    ls: cannot open directory .: Permission denied
    

    I want to give permission to www folder so that I put my .php file here.
    Help ?

  • Zeb
    Zeb over 10 years
    I got this. But In www folder how I give permission to PHP_Work directory in which I save .php files.
  • Sukupa91
    Sukupa91 over 10 years
    then use chmod -r 777 /path/to/folder instead , for giving permissions to subdirectories recursively or use 755, try both am not damn sure..
  • Zeb
    Zeb over 10 years
    I write this , it work well: zeb@zeb-Lenovo-B570:/var$ sudo chmod -R 775 www
  • Sambit
    Sambit over 10 years
    Right now root is the owner of /var/www directory. Change the ownership of that directory to your user account by following command sudo chown -R "YOUR_USER_ACCOUNT" /var/www. After that you have all the permission over that directory.
  • Sukupa91
    Sukupa91 over 10 years
    if it solved your problem , accept it as an answer for future reference for others.