挂载了一个windows的NTFS分区。却只能读不能写。

az0745
挂载了一个windows的NTFS分区。却只能读不能写。

我用命令monut  -t ntfs -o rw /dev/hdb6  /mnt/wine
挂载了windows下的E盘。但是只能读不能写。
错误提示为下面的东西:


[root@localhost ~]# cp /root/Desktop/1 /mnt/wine
cp: 无法创建一般文件“/mnt/wine/1”: 只读文件系统

wxfjx
你用的是什么发行版?版本比较低的发行版不支持对NTFS的写入
比如:红旗5不支持,但是红旗6支持

jerrywjl
一般Linux的kernel默认都不支持NTFS的读取,但通过内核编译可以支持NTFS只读。

fox000002
[quote]原帖由 [i]jerrywjl[/i] 于 2008-7-1 13:34 发表 [url=http://linux.chinaunix.net/bbs/redirect.php?goto=findpost&pid=6633159&ptid=1014058][img]http://linux.chinaunix.net/bbs/images/common/back.gif[/img][/url]
一般Linux的kernel默认都不支持NTFS的读取,但通过内核编译可以支持NTFS只读。 [/quote]


old

NTFS 的读写是解决已久的问题了

az0745
既然是很久前就解决了读写的问题。那我碰到的问题应该怎么解决呢?

我用的是fedora 5.

本来所不支持NTFS的。后来我们弄了一个软件就能支持了。但不能写。

[[i] 本帖最后由 az0745 于 2008-7-1 14:34 编辑 [/i]]

az0745
输入命令:
mount -t ntfs -r rw /dev/hdb6 /mnt/wine

错误提示:

Usage: mount -V                 : print version
       mount -h                 : print this help
       mount                    : list mounted filesystems
       mount -l                 : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
       mount -a [-t|-O] ...     : mount all stuff from /etc/fstab
       mount device             : mount device at the known place
       mount directory          : mount known device here
       mount -t type dev dir    : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
       mount --bind olddir newdir
or move a subtree:
       mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say  man 8 mount .

cst05001
我记得是安全限制。
可以写,但是不安全。有倒霉的兄弟写入后整个分区空掉了。
限制非root对ntfs的写入。防止普通user乱搞。

az0745
可是我一直都是用root用户登录系统的啊。。