|
|
我是KDE4.2
插上移动硬盘能识别,dolphin中能看到所有文件,但却是只读?
请问在哪设置,能使得文件能读写?
补充一点,移动硬盘是NFTS格式的。谢谢大家的帮忙
BTW:
解决思路是这样的,参考http://en.gentoo-wiki.com/wiki/NTFS-3G
- emerge -pv ntfs3g
- ln -s /sbin/mount.ntfs-3g /sbin/mount.ntfs
复制代码
注意,我的内核是支持的,同时我原来不成功,是因为只安装了NTFS3G,没有创建链接。对了,我的fstab是:
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
/dev/sda1 /boot ext2 noauto,noatime 1 2
/dev/sda3 / ext3 noatime 0 1
/dev/sda4 /home ext3 noatime 0 0
/dev/sda2 none swap sw 0 0
/dev/cdrom /mnt/cdrom auto noauto,user 0 0
#/dev/fd0 /mnt/floppy auto noauto 0 0
# glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
# POSIX shared memory (shm_open, shm_unlink).
# (tmpfs is a dynamically expandable/shrinkable ramdisk, and will
# use almost no memory if not populated with files)
shm /dev/shm tmpfs nodev,nosuid,noexec 0 0 |
|