Problems mounting NTFS partition

Zom

Zom

Associate
Joined
18 Oct 2002
Posts
1,117
I'm running Ubuntu 6.06 and I'm having problems accessing my windows partition. At the moment my windows data partition appears in /tmp/disks-conf-sda5 and is only viewable by the root user. When I try and change the permissions in Nautilus it says "Couldn't change the permissions of "disks-conf-sda5" because it is on a read-only disk". What I want to be able to do is to have it automount on startup so that a standard user can read from the partition. Any ideas as to how I might achieve this?
 
To unmount CD/DVD-ROM

sudo umount /media/cdrom0/

I would assume this would be the same for the ntfs patition !

So sudo unmount /media/windata or sudo unmount /dev/sda5

Try an unmount the partition with the above then add the mount command into the mtab and reboot.

Just a suggestion.
 
I've got it sorted - I simply changed a line in mtab to:
Code:
/dev/sda5 /media/windata ntfs rw,nls=utf8,umask=0222 0 0

Thanks for your help - I can now listen to all my music :)
 
I don't think that will be perminate.

/etc/mtab lists what you have mounted, its not where you tell mount where to mount stuff, that would be done in /etc/fstab

its the same command just written in /etc/fstab
 
enragedchip said:
I don't think that will be perminate.

/etc/mtab lists what you have mounted, its not where you tell mount where to mount stuff, that would be done in /etc/fstab

its the same command just written in /etc/fstab
yes
 
Back
Top Bottom