As far as I know, all file systems are mounted as rw unless its a CD or you explicitly specify -o ro. Your problem is that you, as a normal user, do not have rights to write to the mounted filesystem.
You can try mount /mnt/hda2 /mnt -o uid=[your uid].
--== Anything can go wrong. It's just a matter of how far wrong it will go till people think its right. ==--
to get a list of current mounted partitions (filesystems)
It will show you all partitions mounted and the capabilities.
If your hda2 partition is listed as (ro), you might try to un-mount it with
Ahh... fat fingered my reply to you JBaileys. I actually ment to say /dev/hda2 instead of /mnt/hda2.
Let's get a clearer picture first.
1. What file system do you have on the disk you want to mount?
2. What file permissions do you have on the mount point after mounting? (ls -l)
--== Anything can go wrong. It's just a matter of how far wrong it will go till people think its right. ==--
If your GUI object is mounting ro then you have a couple of options:
1. With most GUI-based mount tools you can right click on the disk icon, choose Action and Change Read/Write Mode, then select the Read/Write option (doing this from memory, so the option names may not be correct).
2. Open a terminal window and type "mount -o remount rw /mnt/hda2" and Linux will remount the drive with read/write permissions. You must do this as root, so if you are using one of the LiveCDs you will probably have to append "sudo " to the beginning of the command.
The reason that you are probably having difficulty unmounting the partition is that you probably have a Konqueror window open that is displaying that directory. If any application is working in that directory (or sub directory) you will get that unmount error.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.