Find the answer to your Linux question:
Results 1 to 3 of 3
Can a NTFS partition be mounted in linux. As i have to frequently work on windows and linux i find it as a basic necessity. My frnd told me that ...
  1. #1
    Linux User vickey_20's Avatar
    Join Date
    Mar 2009
    Location
    Mumbai, India
    Posts
    493

    can NTFS partition be mounted on linux

    Can a NTFS partition be mounted in linux. As i have to frequently work on windows and linux i find it as a basic necessity. My frnd told me that i have to format the partition as fat to make the sharing possible. But would opt for that solution if mounting of ntfs partition is not possible......

  2. #2
    Just Joined!
    Join Date
    Apr 2009
    Posts
    13
    sure you can. you need to check if the NTFS module is installed.

    in red hat linux its at /lib/modules/(kernel ver number)/kernel/fs

    and see if ntfs is there.

    do a fdisk to find the partition where the NTFS is mounted

    and then

    create a directory in /mnt (your choice ofcourse) like ntfs

    use mount -t (ntfs partition found in fdisk) /mnt/ntfs

    and go on. but this is for viewing. for modifying data you need fuse and ntfs-3g

    regs

  3. #3
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Linux support NTFS and most of distros allow read/write access out of box. You have to mount NTFS partitions manually in a few distros.
    Which distro are you using?
    In case you are using RHEL, install ntfs-3g package through Package Manager.
    Either edit /etc/fstab file or execute mount command to mount partition(s).
    Code:
    su -
    mount -t ntfs-3g  /dev/<partition>  <mount_point>  -o defaults,umask=0
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...