I'm running openSuse 10.2 and I've got a 250GB external USB Seagate drive formatted with NTFS. I've installed the latest version of the software to read NTFS and NTFS-3G. I can read the drive but I can't write to it. How do I make it so I can write to this external drive?
You may need to create a permanent mount point in the FSTAB.
2 examples of NTFS RW mount points are: /dev/hda2 /mnt/winxp ntfs-3g defaults 0 0
When you reboot, the partion will mount into the folder /mnt/winxp with permissions drwxrwxrwx, i.e with read/write access for everybody, in the style of Microsoft's insecure filesystems.
If you want normal Linux-like permissions (rather than Microsoft free-for-all permissions) to apply to the mounted partition, produces permissions drwxr-xr-x on folder /mnt/winxp, for the owner/user with gid=1002, which is the normal situation for a Linux user's home folders.
/dev/hda and mnt/winxp will need to be changed to match that of the drive you are mounting.
I tried unmounting it and remounting it using this command: # mount -t ntfs-3g /dev/sdb1 /mnt/mount_point -o -force I got this message:
$LogFile indicates unclean shutdown (0, 0) WARNING: Forced mount, reset $LogFile. WARNING: Forced mount, unclean volume information is ignored. WARNING: Deficient Linux kernel detected. Some driver features are not available (swap file on NTFS, boot from NTFS by LILO), and unmount is not safe unless it's made sure the ntfs-3g process naturally terminates after calling 'umount'. If you wish this message to disappear then you should upgrade to at least kernel version 2.6.20, or request help from your distribution to fix the kernel problem. The below web page has more information: http://ntfs-3g.org/support.html#fuse26
Whatever, it takes to make things work. I always leave all my USB devices as FAT file systems. There are still problems with NTFS support in Linux as you have seen.
So I see. This one came preformatted with NTFS and I wasn't sure how nicely FAT would play with a 250GB drive. Thanks for all your help. I'm sure I'm going to be loaded with a new question soon.