6

how to enable to create New document or new folder in var/www/html ? "my Ubuntu is 16.04"

2 Answers2

11
sudo chown -R $USER:$USER /var/www/html
Rinzwind
  • 309,379
Magneto10
  • 312
3

To do it from the terminal:

sudo mkdir /var/www/html/YOUR_DIRECTORY_NAME

You don't want to give yourself ownership of /var/www/html

kalenpw
  • 754