I have a ntfs formatted usb harddrive. When I plug it in, it's automounted, but I don't have any permissions to it (it's mounted as /media/mp3s). How do I correct this?
I did try to change the permissions on the mount directory, but it didn't allow it:
This is my /etc/fstab:
Thanks
I did try to change the permissions on the mount directory, but it didn't allow it:
Code:
$ sudo chmod 777 /media/MP3s chmod: changing permissions of `/media/MP3s': Read-only file system $ sudo chmod 777 /media/MP3s/* chmod: cannot access `/media/MP3s/*': No such file or directory
Code:
# /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 /dev/sda1 / reiserfs notail 0 1 /dev/sda2 none swap sw 0 0 /dev/hda /media/cdrom0 udf,iso9660 user,noauto 0 0
Thanks
Comment