-
Download the specific kernel module rpm from linux-ntfs.org .
You can check the currently installed kernel version using `uname -rm` .
Install via:
# rpm -ivh kernel-module-ntfs-*.rpmCheck the partitions to be mounted:
# fdisk -l | grep NTFS
Note: If using a dual boot, then windows is normally installed in the first partition, "/dev/hda1".
The listed NTFS partition can be mountable after a restart via:# mount -r -o umask=0222 -t ntfs /dev/hda1 /mnt/ntfsFor automated mounts during startup, add the below line in "/etc/fstab" .
/dev/hda1 /mnt/ntfs ntfs ro,defaults,umask=0222 0 0
how to mount ntfs drives in linux
plz explain above question
Easier ntfs support using livna rpm
ntfs mount error in FC5
i've a dual core, 200gb SATA
i tried mounting my ntfs partitions and i'm getting the following err:
[root@localhost ~]# mount -a
mount: unknown filesystem type 'NTFS'
mount: unknown filesystem type 'NTFS'
mount: unknown filesystem type 'NTFS'
mount: unknown filesystem type 'NTFS'
mount: unknown filesystem type 'NTFS'
mount: unknown filesystem type 'NTFS'
[root@localhost ~]# clear
[root@localhost ~]# mount -a
mount: unknown filesystem type 'ntfs'
[root@localhost ~]# mount -r -o umask=0222 -t ntfs /dev/sda1 /mnt/win
mount: unknown filesystem type 'ntfs'
[root@localhost ~]#
i can't understand y this is happening... can neone help?
ntfs mount error in FC5
What does `fdisk -l` reveal?
Did you reboot after installing the kernel support for ntfs?