Results 1 to 8 of 8
I have dual-boot XP/Karmic
I have an external HDD for backup. One partition is NTFS for the XP stuff. The second partition is ext4.
I was practicing with the SystemRestoreCD, ...
- 01-01-2010 #1Just Joined!
- Join Date
- Dec 2009
- Location
- Highlands
- Posts
- 37
[SOLVED] I thought root could do anything :)
I have dual-boot XP/Karmic
I have an external HDD for backup. One partition is NTFS for the XP stuff. The second partition is ext4.
I was practicing with the SystemRestoreCD, which provides a Linux root console.
I can create and delete directories on the ext4 partition, but not on the NTFS partition. The error message says "read-only file system".
The permissions on the NTFS partion are:
rwx --- --- myName myName
I tried to use chmod and chown to change permissions and owner.
I assumed that as root, I could do anything.
How can I access the NTFS partition, and do anything that I need to do?
BTW: All my current XP stuff on the HDD was backed up from within XP, using standard software (Cobian Backup), and normal user privileges. But I want to practice for when my XP OS is damaged.
.
- 01-01-2010 #2
you have to mount ntfs partition with option umask=0 in order to be able to write to it
- 01-01-2010 #3Just Joined!
- Join Date
- Dec 2009
- Location
- Highlands
- Posts
- 37
- 01-01-2010 #4
You should use the ntfs-3g driver for ntfs read/write. Unmount the partition and try using ntfs-3g instead.
- 01-01-2010 #5Just Joined!
- Join Date
- Dec 2009
- Location
- Highlands
- Posts
- 37
- 01-01-2010 #6Linux Guru
- Join Date
- Oct 2007
- Location
- Tucson AZ
- Posts
- 1,946
Use Synaptic to check to see if ntfs-3g is installed. If it is, you just need to use the mount command:
mount -t ntfs-3g /dev/sdb1 /mnt/freecom
To make it permanent, put an entry in /etc/fstab
- 01-02-2010 #7
Don't forget to add umask=0 to enable read/write access for all users.
Code:mount -t ntfs-3g /dev/partition /mount_point -o defaults,umask=0
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 01-02-2010 #8Just Joined!
- Join Date
- Dec 2009
- Location
- Highlands
- Posts
- 37
Thanks for all the suggestions. Everything worked great

After gaining write access to the HDD, I used fsarchiver to back up the XP Windows partition.
I then tested the backup by deleting every file on the partition. (I've always wanted to try that
)
The restore worked perfectly. (No GRUB problems.)
Thanks again.
.



