0

Possible Duplicate:
problems with sudo permissions - /var/lib/sudo owned by uid

I recently installed Ubuntu Server and put the GUI on so I can get the hang of Linux. However, I can't seem to gain access to the /var/www/ folder so I can put and edit my html files...

I tried what was on this post: Change folder permissions and ownership and I still can't move files. (Except if I use nautilus)

When I tried what Ikke suggessted, it appeared to have worked (as in no errors thrown in terminal) but when I still can't move files into the folder.

If I use nautilus and look at the permissions for /var/www it lists me as the owner (is just says my username), Create and Delete files for folder access. And --- for file access. If I change file access to Read and Write it just goes back to --- once I hit Apply Permissions to Enclosed Files.

What am I missing?

ecnepsnai
  • 132

2 Answers2

4

/var/www is owned by root. You will need to do the following:

sudo chown user:user /var/www
Where user is your username.
1

have you tried adding your user to the www-data group?

try this:

sudo usermod -G www-data -a 'your-username-here'

for a little more info you could look here: http://ubuntuforums.org/showthread.php?t=919951