I came across this www.http://en.opensuse.org/SDB:NTFS which states for write support :-
The NTFS driver ntfs-3g is installed by default and write support is enabled for root only. Modify /etc/fstab line where is mentioned windows, parameter dmask=002 and parameter fmask=113 to enable user writing. For example:
#Device Mountpoint Filesystem Parameters
/dev/sda1 /windows/C ntfs-3g user,users,gid=users,fmask=113,dmask=002,locale=en_US.UTF-8 0 0
To mount the disk:-
By adding an entry to the file /etc/fstab, the NTFS file system will be mounted automatically at boot. Make sure the mount point directory (in this example /Windows/C) exists beforehand. The most common case is that NTFS is on partition one of the first hard disk:
#Device Mountpoint Filesystem Parameters
/dev/sda1 /windows/C ntfs-3g user,users,gid=users,umask=0002 0 0
Other options
#Device Mountpoint Filesystem Parameters
/dev/disk/by-label/win /windows/C ntfs-3g user,users,gid=users,umask=0002 0 0
This is my windows 8 hard drive:-
Disk /dev/sda: 500.1 GB, 500107862016 bytes, 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk label type: gpt
# Start End Size Type Name
1 34 262177 128M Microsoft reser
Partition 1 does not start on physical sector boundary.
2 264192 878591 300M Windows recover
3 878592 1083391 100M EFI System
4 1083392 976773119 465.3G Microsoft basic
In order to use this hard disk (rw enable) and make it accessible to openSUSE 13.1, I have to do the following:-
-
Create a mount/dir point for the disk - /home/law/windows
-
Edit the /etc/fstab file:-
/dev/disk/by-id/ata-Hitachi_HDS721050DLE630_MSK421Y21RLHRF-part2 swap swap defaults 0 0
/dev/disk/by-id/ata-Hitachi_HDS721050DLE630_MSK421Y21RLHRF-part3 / ext4 acl,user_xattr 1 1
/dev/disk/by-id/ata-Hitachi_HDS721050DLE630_MSK421Y21RLHRF-part1 /boot/efi vfat umask=0002,utf8=true 0 0
/dev/disk/by-id/ata-Hitachi_HDS721050DLE630_MSK421Y21RLHRF-part4 /home ext4 acl,user_xattr 1 2
**/dev/disk/by-id/wwn-0x5000c50065e2091b /home/law/windows ntfs-3g defaults,user,gid=users,umask=0002,fmask=113,dmask=002,locale=en_US.UTF-8 0 0**
Where the id wwn-… is /dev/sda4 the home partition taken from ‘Expert Partitioner’ YaST:-
- Device: /dev/sda
- Size: 465.76 GB
- Device Path: pci-0000:00:11.0-scsi-0:0:0:0
- Device ID 1: ata-ST500DM002-1BD142_Z3TX7GP4
Device ID 2: scsi-1ATA_ST500DM002-1BD142_Z3TX7GP4
Device ID 3: scsi-SATA_ST500DM002-1BD14_Z3TX7GP4
Device ID 4: wwn-0x5000c50065e2091b
Then reboot the system?