Code Sample |
# sudo ls -l /mnt/auto drwxr-xr-x 2 root root 4096 oct 7 2006 cdrom drwxr-xr-x 2 root root 4096 oct 7 2006 floppy |
Quote |
sudo chmod a+w /mnt/auto/* |
Quote (curaga @ May 13 2007,09:51) | ||
That's the problem.
|
Code Sample |
ls -l /mnt/auto/floppy drwxr---r-- 3 root root 7168 Dec 31 1969 floppy |
Quote (mikshaw @ May 13 2007,18:26) |
Automount doesn't exist in DSL. That message is just a carry-over from Knoppix. If you mount a floppy as root (using sudo, for example), the floppy will be owned by root. Mount it as user dsl and that user will own the floppy. Changing the permissions of the mount point to permit writing is not going to help if you still are not allowed to read. drwxr-xr-x means dsl can't read it. drwxr-wxr-wx (after running chmod a+w) means dsl still can't read it. A single "x" for a permission is fairly useless. |