|
-
I wanted to check that you were at an easier to use Standard
level #2 instead of something higher in security which is good
unless you run a server, otherwise there was more work involved.
I'm currently loaded at a higher #4 security and do not have a
windows partition on this machine, but if I recall correctly,
when you installed Mandriva from CDrom or DVDrom, you may have
seen a graphical representation of the different partitions on
your hard drive. The default mount option is to mount ntfs as
ro=Read_Only and there is an expert mode in the install process
which allows you to add/modify more options, such as mount it
RW=Read_Write.
I'm assuming that when you refer to windows, you are having write
problems with ntfs and not the more mature vfat which I believe
has read/write mode enabled under standard user settings.
Older versions of linux were able to read ntfs but not write to
it and it was recommended to use a VFAT partition seen
as /mnt/win_d by linux or a drive D (or E: ) by windows.
I believe you can write "now" to ntfs using the experimental 3g
modules but you were not able write to ntfs with version 2007.
read this here for some info and prior history:
http://mandrivausers.org/index.php?showtopic=4960
http://mandrivausers.org/index.php?showtopic=40208
With Mandriva 2008, you will need to install additional ntfs-3g
drivers. Run the configure your computer tool.
Menu->Tools->System Tools->Configure Your Computer
Select the "software management" tab so that you can install
additional RPM software. In the search bar, type in "ntfs"
(without the quotes) to search for all RPMs related to ntfs. The
ntfs-3g files are needed for write support. I don't have ntfs or
windows on this machine, so I'll suggest loading ntfs-3g which
should automatically suggest other dependent modules to load as
well. If they were not installed, install them now.
------------
Next, you can use the configure your computer graphical tool
(local disks, manage partitions, toggle expert mode, options) to
make modifications,. but the quickest way I could think of to fix
the ntfs read/write from a user perspective is through the fstab
(File System Table) which is a text file. you will need to fix it
in su mode, so... start a command-line terminal.
su
cp /etc/fstab /etc/fstab_backup
kwrite /etc/fstab
You may have another location mentioned instead of hda1 or sda1
so use the substitute sdaX or hdaX instead of my example below.
You may find a line containing your vfat or ntfs information.
/dev/hda1 /mnt/win_c ntfs nls=utf8,umask=0222 0 0
/dev/hda1 /mnt/win_c vfat iocharset=utf8,umask=0222 0 0
You will want to modify the umask from 222 to 000
If the line has a "ro", change it to "rw"
/dev/hda1 /mnt/win_c ntfs nls=utf8,umask=0 0 0
/dev/hda1 /mnt/win_c vfat iocharset=utf8,umask=0 0 0
another possibility is something like this (one line):
/dev/hda1 /mnt/win_c ntfs-3g rw,uid=500,gid=500,
nls=utf8,umask=0007 0 0
Next, unmount and remount the ntfs or vfat partition
umount /mnt/win_c
mount -a
You should be able to read/write the ntfs partition now.
If you wish to know more about the mount command, type man mount
on the command line, use up/down arrows to navigate and press q
to quit. This will give you additional information concerning
ntfs or vfat options. You can also read the fstab manual by
typing man fstab
I hope you are good-to-go now.
Joe |