Mount and read from NTFS partitions on Linux -- Fedora Core 5

  1. Download the specific kernel module rpm from linux-ntfs.org .
  2. You can check the currently installed kernel version using `uname -rm` .
  3. Install via:
    # rpm -ivh kernel-module-ntfs-*.rpm
    
  4. Check 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".

  5. The listed NTFS partition can be mountable after a restart via:
    # mount -r -o umask=0222 -t ntfs /dev/hda1 /mnt/ntfs
    
  6. For automated mounts during startup, add the below line in "/etc/fstab" .
    /dev/hda1   /mnt/ntfs     ntfs    ro,defaults,umask=0222 0 0
    

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

how to mount ntfs drives in linux

plz explain above question

Easier ntfs support using livna rpm

  1. Add and configure the livna repo by creating a file "/etc/yum.repos.d/livna.repo" with the below contents.
    [livna]
    name=Livna for Fedora Core $releasever - $basearch - Base
    baseurl=http://rpm.livna.org/fedora/$releasever/$basearch
    enabled=0
    gpgcheck=1
      
  2. Import the GPG key.
    # rpm --import http://rpm.livna.org/RPM-LIVNA-GPG-KEY
     
  3. Install the ntfs kernel module.
    # yum --enaberepo=livna -y install kmod-ntfs
  4. Mount normally via:
    # mount -t ntfs /dev/hda1 /mnt/ntfs

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?

Comment