Cannot acces /files

Hello,
Iv’e made an partition with the extention EXT3 and the name is /files buth I can’t copy files in it, I get the following warning: Acces denied

What can I do?

Hi
It is better to create a sub directory under /files then
change the ownership to your username.

For example;


sudo mkdir /files/data
sudo chmod 755 /files/data
sudo chown yourusername:users /files/data

You could change the ownerships of files, but I would not recommend it
for a directory direct of the root files system.


Cheers Malcolm °¿° (Linux Counter #276890)
openSUSE 11.0 x86 Kernel 2.6.25.16-0.1-default
up 6:40, 1 user, load average: 0.13, 0.21, 0.19
GPU GeForce 6600 TE/6200 TE - Driver Version: 173.14.12

Not necessary to make a su directory just do

sudo chmod 755 /files
sudo chown yourusername:users /files

you need to change the permission of /files dir using chmod command e.x login as root and execute chmod 777 /files

thank you verry much;)