You are not logged in.
I'm running ArchLinux on a desktop but I have my music files on an external HDD.
So, I added a line to /etc/fstab to enable the music partition on the external drive to be mounted.
However, the folder where it is mounted was created by root so I can't access it (as user) without changing the ownership.
So, I did
# chown paul:users /mnt/music
which gives me the message:
chown: changing ownership of `/mnt/music': Read-only file system
However, ownership remains as root and I'm still unable to acees this folder.
What's going on here?
Last edited by paulfxh (2008-03-13 21:31:03)
Offline
what filesystem is the external drive using?
may the Source be with you
Offline
are you sure the fs is mounted in rw mode, the error message shouldn't be wrong when it says it's a rad-only(ro) fs
Offline
what filesystem is the external drive using?
It's ntfs.
But, I can access a similar fs on an external drive from Ubuntu without any problems (and that's without using ntfs-3g).
Offline
are you sure the fs is mounted in rw mode, the error message shouldn't be wrong when it says it's a rad-only(ro) fs
But, I'm not worried about it being ro as I only want to "listen" to the music and not change any of the files.
Offline
kumico wrote:are you sure the fs is mounted in rw mode, the error message shouldn't be wrong when it says it's a rad-only(ro) fs
But, I'm not worried about it being ro as I only want to "listen" to the music and not change any of the files.
You will only be able to change the ownership if you unmount and remount the filesystem read-write
(then after changing ownership you can unmount and remount it read-only again, if you so wish)
Last edited by dyscoria (2008-03-13 21:11:35)
flack 2.0.6: menu-driven BASH script to easily tag FLAC files (AUR)
knock-once 1.2: BASH script to easily create/send one-time sequences for knockd (forum/AUR)
Offline
you CANNOT, modify the fs in ro mode. so you have to mount it in rw, then change the permission.
`mount -o rw,remount /mnt/music`
`change perms`
`mount -o ro,remount /mnt/music`
should do it.
Offline
OK, that's what I was missing -- it's got to be rw.
Well, I've got it working now.:D
Thanks to everybody for your help.
Offline