p cooper <pdconetwofour_numbers_@yahoo.co.uk> écrivait
news:M464f.129541$(E-Mail Removed) .uk:
> but I cant access some of the stuff
> grenada mnt # ls -la /mnt/data/WINDOWS
> ls: reading directory /mnt/data/WINDOWS: Permission denied
> total 0
> grenada mnt # ls -la /mnt/data/Documents\ and\ Settings/Jane/
> ls: reading directory /mnt/data/Documents and Settings/Jane/:
> Permission denied
> total 0
That's logical, when you mount a CIFS share you identified yourself as a
user, and by default this is you unix login ("root" here). But as "root"
is unknown you are identifed to the guest user.
Now, the C:\Windows is, by default, only accessible by the
"Administrator" user, and C:\Documents and Settings\Jane is only
accessible by the user "Jane".
Two choice:
- modify the security settings on the share (right click on the dir ->
Settings)
- mount the share using another username :
ls -la /mnt/data/Documents\ and\ Settings/Jane/ -o usernam=Jane
ls -la /mnt/data/Documents\ and\ Settings/Jane/ -o
usernam=Administrator
Regards
|