How to read NTFS drives in Linux (RHEL 6)?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












My system is on dual boot. I have installed both RHEL 6 and win7 in it. I use RHEL mostly and I want to use my windows' NTFS drive in RHEL. How can I do it? Tell me the procedure.



enter image description here










share|improve this question

























    up vote
    0
    down vote

    favorite












    My system is on dual boot. I have installed both RHEL 6 and win7 in it. I use RHEL mostly and I want to use my windows' NTFS drive in RHEL. How can I do it? Tell me the procedure.



    enter image description here










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      My system is on dual boot. I have installed both RHEL 6 and win7 in it. I use RHEL mostly and I want to use my windows' NTFS drive in RHEL. How can I do it? Tell me the procedure.



      enter image description here










      share|improve this question













      My system is on dual boot. I have installed both RHEL 6 and win7 in it. I use RHEL mostly and I want to use my windows' NTFS drive in RHEL. How can I do it? Tell me the procedure.



      enter image description here







      rhel mount ntfs






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 18 '11 at 15:43









      Chankey Pathak

      73871832




      73871832




















          5 Answers
          5






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          A very similar question seems to have been answered over at Super User.



          https://superuser.com/questions/251663/unable-to-mount-ntfs-drive-with-rhel-6



          Hope that helps.



          Edit:



          If you wanted to mount sda3 your command would look like this:



          mount -t ntfs-3g /dev/sda3 /mnt/windows


          For more information on ntfs-3g check out the site here.






          share|improve this answer





























            up vote
            1
            down vote













            Install the fuse ntfs-3g package (if not available download it, remember your OS type 64-bit or 32-bit)



            You must be logged in as root for the below command to work :



            # yum install ntfs-3g


            if yum is not configured install it by using rpm command.



            Entering the below commands would help you determine the name of an NTFS partition :



            # fdisk -l /dev/sda
            # fdisk -l /dev/sdb


            It is essential to load the fuse driver. The below command should help you do that :



             # modprobe fuse


            Now using the below command you must build a mount point:



             # mkdir /mnt/ntfs


            The following command would help you with mounting the ntfs partition :



             # mount -t ntfs-3g /dev/sda1 /mnt/ntfs


            This is a temporary mounting only, if you reboot your pc the mount point will be lost. To mount it permanently, you need to edit the /etc/fstab configuration file.



            # vim /etc/fstab


            in the file



            ex: # device name mount point fs-type options 
            /dev/sda6 /mnt/ntfs ntfs-3g auto 0 0


            clear explanation for each column:



            • device name - your partition name ex: /dev/sda6


            • mount point - where u mount u r partition ex: /mnt/ntfs


            • fs-type - your file system type ex: ntfs-3g (if u give ntfs, may be it is not work)


            • option - Ex:auto (if not work give it is defaults)


            last two columns same as 0 0



            Hope it will work.






            share|improve this answer





























              up vote
              0
              down vote













              I don't have RHEL, but yum install fuse-ntfs-3g should work AFAIK.






              share|improve this answer




















              • Newer version is just named ntfs-3g, but yours still works. Better is sudo yum install ntfs-3g ntfsprogs.
                – Joe Internet
                Jul 19 '11 at 15:44


















              up vote
              0
              down vote













              Only Few Packages which needs to be Installed and You are done.




              1. Install and configure the EPEL Repository



                wget http://epel.mirror.net.in/epel/6/i386/epel-release-6-8.noarch.rpm
                rpm -Uvh epel-release-6-8.noarch.rpm



              2. Install the packages related to NTFS Mount:



                yum -y install ntfs-3g ntfsprogs



              3. Attach NTFS drive and find and mount partition:



                mount /dev/sda4 /etc/windows_ntfs


                Make sure before that "windows_ntfs" folder is created inside the etc folder







              share|improve this answer






















              • Please add the missing part @siva-s-tenet
                – polym
                Aug 4 '14 at 9:10










              • @polym You can directly double click the drive or mount it to some folder
                – Siva S Tenet
                Aug 4 '14 at 12:19

















              up vote
              0
              down vote













              This process worked for me:



              In RHEL developer edition which is free subscription,



              yum install ntfs-3g


              didn't work for me. I had to manually add epel repository through



              yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm


              then, yum install ntfs-3g worked.



              After that, i've mounted partitions through:



              mount -t ntfs-3g /dev/sda5 /mnt/ntfs



              References:



              [1] https://www.centos.org/forums/viewtopic.php?t=4722



              [2] http://fedoraproject.org/wiki/EPEL






              share|improve this answer






















                Your Answer







                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "106"
                ;
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function()
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled)
                StackExchange.using("snippets", function()
                createEditor();
                );

                else
                createEditor();

                );

                function createEditor()
                StackExchange.prepareEditor(
                heartbeatType: 'answer',
                convertImagesToLinks: false,
                noModals: false,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                );



                );













                 

                draft saved


                draft discarded


















                StackExchange.ready(
                function ()
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f16893%2fhow-to-read-ntfs-drives-in-linux-rhel-6%23new-answer', 'question_page');

                );

                Post as a guest






























                5 Answers
                5






                active

                oldest

                votes








                5 Answers
                5






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes








                up vote
                2
                down vote



                accepted










                A very similar question seems to have been answered over at Super User.



                https://superuser.com/questions/251663/unable-to-mount-ntfs-drive-with-rhel-6



                Hope that helps.



                Edit:



                If you wanted to mount sda3 your command would look like this:



                mount -t ntfs-3g /dev/sda3 /mnt/windows


                For more information on ntfs-3g check out the site here.






                share|improve this answer


























                  up vote
                  2
                  down vote



                  accepted










                  A very similar question seems to have been answered over at Super User.



                  https://superuser.com/questions/251663/unable-to-mount-ntfs-drive-with-rhel-6



                  Hope that helps.



                  Edit:



                  If you wanted to mount sda3 your command would look like this:



                  mount -t ntfs-3g /dev/sda3 /mnt/windows


                  For more information on ntfs-3g check out the site here.






                  share|improve this answer
























                    up vote
                    2
                    down vote



                    accepted







                    up vote
                    2
                    down vote



                    accepted






                    A very similar question seems to have been answered over at Super User.



                    https://superuser.com/questions/251663/unable-to-mount-ntfs-drive-with-rhel-6



                    Hope that helps.



                    Edit:



                    If you wanted to mount sda3 your command would look like this:



                    mount -t ntfs-3g /dev/sda3 /mnt/windows


                    For more information on ntfs-3g check out the site here.






                    share|improve this answer














                    A very similar question seems to have been answered over at Super User.



                    https://superuser.com/questions/251663/unable-to-mount-ntfs-drive-with-rhel-6



                    Hope that helps.



                    Edit:



                    If you wanted to mount sda3 your command would look like this:



                    mount -t ntfs-3g /dev/sda3 /mnt/windows


                    For more information on ntfs-3g check out the site here.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Mar 20 '17 at 10:18









                    Community♦

                    1




                    1










                    answered Jul 18 '11 at 17:03









                    Chris Knadler

                    22819




                    22819






















                        up vote
                        1
                        down vote













                        Install the fuse ntfs-3g package (if not available download it, remember your OS type 64-bit or 32-bit)



                        You must be logged in as root for the below command to work :



                        # yum install ntfs-3g


                        if yum is not configured install it by using rpm command.



                        Entering the below commands would help you determine the name of an NTFS partition :



                        # fdisk -l /dev/sda
                        # fdisk -l /dev/sdb


                        It is essential to load the fuse driver. The below command should help you do that :



                         # modprobe fuse


                        Now using the below command you must build a mount point:



                         # mkdir /mnt/ntfs


                        The following command would help you with mounting the ntfs partition :



                         # mount -t ntfs-3g /dev/sda1 /mnt/ntfs


                        This is a temporary mounting only, if you reboot your pc the mount point will be lost. To mount it permanently, you need to edit the /etc/fstab configuration file.



                        # vim /etc/fstab


                        in the file



                        ex: # device name mount point fs-type options 
                        /dev/sda6 /mnt/ntfs ntfs-3g auto 0 0


                        clear explanation for each column:



                        • device name - your partition name ex: /dev/sda6


                        • mount point - where u mount u r partition ex: /mnt/ntfs


                        • fs-type - your file system type ex: ntfs-3g (if u give ntfs, may be it is not work)


                        • option - Ex:auto (if not work give it is defaults)


                        last two columns same as 0 0



                        Hope it will work.






                        share|improve this answer


























                          up vote
                          1
                          down vote













                          Install the fuse ntfs-3g package (if not available download it, remember your OS type 64-bit or 32-bit)



                          You must be logged in as root for the below command to work :



                          # yum install ntfs-3g


                          if yum is not configured install it by using rpm command.



                          Entering the below commands would help you determine the name of an NTFS partition :



                          # fdisk -l /dev/sda
                          # fdisk -l /dev/sdb


                          It is essential to load the fuse driver. The below command should help you do that :



                           # modprobe fuse


                          Now using the below command you must build a mount point:



                           # mkdir /mnt/ntfs


                          The following command would help you with mounting the ntfs partition :



                           # mount -t ntfs-3g /dev/sda1 /mnt/ntfs


                          This is a temporary mounting only, if you reboot your pc the mount point will be lost. To mount it permanently, you need to edit the /etc/fstab configuration file.



                          # vim /etc/fstab


                          in the file



                          ex: # device name mount point fs-type options 
                          /dev/sda6 /mnt/ntfs ntfs-3g auto 0 0


                          clear explanation for each column:



                          • device name - your partition name ex: /dev/sda6


                          • mount point - where u mount u r partition ex: /mnt/ntfs


                          • fs-type - your file system type ex: ntfs-3g (if u give ntfs, may be it is not work)


                          • option - Ex:auto (if not work give it is defaults)


                          last two columns same as 0 0



                          Hope it will work.






                          share|improve this answer
























                            up vote
                            1
                            down vote










                            up vote
                            1
                            down vote









                            Install the fuse ntfs-3g package (if not available download it, remember your OS type 64-bit or 32-bit)



                            You must be logged in as root for the below command to work :



                            # yum install ntfs-3g


                            if yum is not configured install it by using rpm command.



                            Entering the below commands would help you determine the name of an NTFS partition :



                            # fdisk -l /dev/sda
                            # fdisk -l /dev/sdb


                            It is essential to load the fuse driver. The below command should help you do that :



                             # modprobe fuse


                            Now using the below command you must build a mount point:



                             # mkdir /mnt/ntfs


                            The following command would help you with mounting the ntfs partition :



                             # mount -t ntfs-3g /dev/sda1 /mnt/ntfs


                            This is a temporary mounting only, if you reboot your pc the mount point will be lost. To mount it permanently, you need to edit the /etc/fstab configuration file.



                            # vim /etc/fstab


                            in the file



                            ex: # device name mount point fs-type options 
                            /dev/sda6 /mnt/ntfs ntfs-3g auto 0 0


                            clear explanation for each column:



                            • device name - your partition name ex: /dev/sda6


                            • mount point - where u mount u r partition ex: /mnt/ntfs


                            • fs-type - your file system type ex: ntfs-3g (if u give ntfs, may be it is not work)


                            • option - Ex:auto (if not work give it is defaults)


                            last two columns same as 0 0



                            Hope it will work.






                            share|improve this answer














                            Install the fuse ntfs-3g package (if not available download it, remember your OS type 64-bit or 32-bit)



                            You must be logged in as root for the below command to work :



                            # yum install ntfs-3g


                            if yum is not configured install it by using rpm command.



                            Entering the below commands would help you determine the name of an NTFS partition :



                            # fdisk -l /dev/sda
                            # fdisk -l /dev/sdb


                            It is essential to load the fuse driver. The below command should help you do that :



                             # modprobe fuse


                            Now using the below command you must build a mount point:



                             # mkdir /mnt/ntfs


                            The following command would help you with mounting the ntfs partition :



                             # mount -t ntfs-3g /dev/sda1 /mnt/ntfs


                            This is a temporary mounting only, if you reboot your pc the mount point will be lost. To mount it permanently, you need to edit the /etc/fstab configuration file.



                            # vim /etc/fstab


                            in the file



                            ex: # device name mount point fs-type options 
                            /dev/sda6 /mnt/ntfs ntfs-3g auto 0 0


                            clear explanation for each column:



                            • device name - your partition name ex: /dev/sda6


                            • mount point - where u mount u r partition ex: /mnt/ntfs


                            • fs-type - your file system type ex: ntfs-3g (if u give ntfs, may be it is not work)


                            • option - Ex:auto (if not work give it is defaults)


                            last two columns same as 0 0



                            Hope it will work.







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Jan 4 '13 at 12:33









                            mtk

                            7,5952659102




                            7,5952659102










                            answered Jan 4 '13 at 11:09









                            user29706

                            111




                            111




















                                up vote
                                0
                                down vote













                                I don't have RHEL, but yum install fuse-ntfs-3g should work AFAIK.






                                share|improve this answer




















                                • Newer version is just named ntfs-3g, but yours still works. Better is sudo yum install ntfs-3g ntfsprogs.
                                  – Joe Internet
                                  Jul 19 '11 at 15:44















                                up vote
                                0
                                down vote













                                I don't have RHEL, but yum install fuse-ntfs-3g should work AFAIK.






                                share|improve this answer




















                                • Newer version is just named ntfs-3g, but yours still works. Better is sudo yum install ntfs-3g ntfsprogs.
                                  – Joe Internet
                                  Jul 19 '11 at 15:44













                                up vote
                                0
                                down vote










                                up vote
                                0
                                down vote









                                I don't have RHEL, but yum install fuse-ntfs-3g should work AFAIK.






                                share|improve this answer












                                I don't have RHEL, but yum install fuse-ntfs-3g should work AFAIK.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Jul 18 '11 at 16:56









                                Philomath

                                2,07211420




                                2,07211420











                                • Newer version is just named ntfs-3g, but yours still works. Better is sudo yum install ntfs-3g ntfsprogs.
                                  – Joe Internet
                                  Jul 19 '11 at 15:44

















                                • Newer version is just named ntfs-3g, but yours still works. Better is sudo yum install ntfs-3g ntfsprogs.
                                  – Joe Internet
                                  Jul 19 '11 at 15:44
















                                Newer version is just named ntfs-3g, but yours still works. Better is sudo yum install ntfs-3g ntfsprogs.
                                – Joe Internet
                                Jul 19 '11 at 15:44





                                Newer version is just named ntfs-3g, but yours still works. Better is sudo yum install ntfs-3g ntfsprogs.
                                – Joe Internet
                                Jul 19 '11 at 15:44











                                up vote
                                0
                                down vote













                                Only Few Packages which needs to be Installed and You are done.




                                1. Install and configure the EPEL Repository



                                  wget http://epel.mirror.net.in/epel/6/i386/epel-release-6-8.noarch.rpm
                                  rpm -Uvh epel-release-6-8.noarch.rpm



                                2. Install the packages related to NTFS Mount:



                                  yum -y install ntfs-3g ntfsprogs



                                3. Attach NTFS drive and find and mount partition:



                                  mount /dev/sda4 /etc/windows_ntfs


                                  Make sure before that "windows_ntfs" folder is created inside the etc folder







                                share|improve this answer






















                                • Please add the missing part @siva-s-tenet
                                  – polym
                                  Aug 4 '14 at 9:10










                                • @polym You can directly double click the drive or mount it to some folder
                                  – Siva S Tenet
                                  Aug 4 '14 at 12:19














                                up vote
                                0
                                down vote













                                Only Few Packages which needs to be Installed and You are done.




                                1. Install and configure the EPEL Repository



                                  wget http://epel.mirror.net.in/epel/6/i386/epel-release-6-8.noarch.rpm
                                  rpm -Uvh epel-release-6-8.noarch.rpm



                                2. Install the packages related to NTFS Mount:



                                  yum -y install ntfs-3g ntfsprogs



                                3. Attach NTFS drive and find and mount partition:



                                  mount /dev/sda4 /etc/windows_ntfs


                                  Make sure before that "windows_ntfs" folder is created inside the etc folder







                                share|improve this answer






















                                • Please add the missing part @siva-s-tenet
                                  – polym
                                  Aug 4 '14 at 9:10










                                • @polym You can directly double click the drive or mount it to some folder
                                  – Siva S Tenet
                                  Aug 4 '14 at 12:19












                                up vote
                                0
                                down vote










                                up vote
                                0
                                down vote









                                Only Few Packages which needs to be Installed and You are done.




                                1. Install and configure the EPEL Repository



                                  wget http://epel.mirror.net.in/epel/6/i386/epel-release-6-8.noarch.rpm
                                  rpm -Uvh epel-release-6-8.noarch.rpm



                                2. Install the packages related to NTFS Mount:



                                  yum -y install ntfs-3g ntfsprogs



                                3. Attach NTFS drive and find and mount partition:



                                  mount /dev/sda4 /etc/windows_ntfs


                                  Make sure before that "windows_ntfs" folder is created inside the etc folder







                                share|improve this answer














                                Only Few Packages which needs to be Installed and You are done.




                                1. Install and configure the EPEL Repository



                                  wget http://epel.mirror.net.in/epel/6/i386/epel-release-6-8.noarch.rpm
                                  rpm -Uvh epel-release-6-8.noarch.rpm



                                2. Install the packages related to NTFS Mount:



                                  yum -y install ntfs-3g ntfsprogs



                                3. Attach NTFS drive and find and mount partition:



                                  mount /dev/sda4 /etc/windows_ntfs


                                  Make sure before that "windows_ntfs" folder is created inside the etc folder








                                share|improve this answer














                                share|improve this answer



                                share|improve this answer








                                edited Aug 4 '14 at 12:20

























                                answered Aug 4 '14 at 8:51









                                Siva S Tenet

                                12




                                12











                                • Please add the missing part @siva-s-tenet
                                  – polym
                                  Aug 4 '14 at 9:10










                                • @polym You can directly double click the drive or mount it to some folder
                                  – Siva S Tenet
                                  Aug 4 '14 at 12:19
















                                • Please add the missing part @siva-s-tenet
                                  – polym
                                  Aug 4 '14 at 9:10










                                • @polym You can directly double click the drive or mount it to some folder
                                  – Siva S Tenet
                                  Aug 4 '14 at 12:19















                                Please add the missing part @siva-s-tenet
                                – polym
                                Aug 4 '14 at 9:10




                                Please add the missing part @siva-s-tenet
                                – polym
                                Aug 4 '14 at 9:10












                                @polym You can directly double click the drive or mount it to some folder
                                – Siva S Tenet
                                Aug 4 '14 at 12:19




                                @polym You can directly double click the drive or mount it to some folder
                                – Siva S Tenet
                                Aug 4 '14 at 12:19










                                up vote
                                0
                                down vote













                                This process worked for me:



                                In RHEL developer edition which is free subscription,



                                yum install ntfs-3g


                                didn't work for me. I had to manually add epel repository through



                                yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm


                                then, yum install ntfs-3g worked.



                                After that, i've mounted partitions through:



                                mount -t ntfs-3g /dev/sda5 /mnt/ntfs



                                References:



                                [1] https://www.centos.org/forums/viewtopic.php?t=4722



                                [2] http://fedoraproject.org/wiki/EPEL






                                share|improve this answer


























                                  up vote
                                  0
                                  down vote













                                  This process worked for me:



                                  In RHEL developer edition which is free subscription,



                                  yum install ntfs-3g


                                  didn't work for me. I had to manually add epel repository through



                                  yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm


                                  then, yum install ntfs-3g worked.



                                  After that, i've mounted partitions through:



                                  mount -t ntfs-3g /dev/sda5 /mnt/ntfs



                                  References:



                                  [1] https://www.centos.org/forums/viewtopic.php?t=4722



                                  [2] http://fedoraproject.org/wiki/EPEL






                                  share|improve this answer
























                                    up vote
                                    0
                                    down vote










                                    up vote
                                    0
                                    down vote









                                    This process worked for me:



                                    In RHEL developer edition which is free subscription,



                                    yum install ntfs-3g


                                    didn't work for me. I had to manually add epel repository through



                                    yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm


                                    then, yum install ntfs-3g worked.



                                    After that, i've mounted partitions through:



                                    mount -t ntfs-3g /dev/sda5 /mnt/ntfs



                                    References:



                                    [1] https://www.centos.org/forums/viewtopic.php?t=4722



                                    [2] http://fedoraproject.org/wiki/EPEL






                                    share|improve this answer














                                    This process worked for me:



                                    In RHEL developer edition which is free subscription,



                                    yum install ntfs-3g


                                    didn't work for me. I had to manually add epel repository through



                                    yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm


                                    then, yum install ntfs-3g worked.



                                    After that, i've mounted partitions through:



                                    mount -t ntfs-3g /dev/sda5 /mnt/ntfs



                                    References:



                                    [1] https://www.centos.org/forums/viewtopic.php?t=4722



                                    [2] http://fedoraproject.org/wiki/EPEL







                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited Sep 7 at 23:22









                                    Rui F Ribeiro

                                    36.8k1273117




                                    36.8k1273117










                                    answered Apr 12 at 17:39









                                    prashanth kumar

                                    1




                                    1



























                                         

                                        draft saved


                                        draft discarded















































                                         


                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f16893%2fhow-to-read-ntfs-drives-in-linux-rhel-6%23new-answer', 'question_page');

                                        );

                                        Post as a guest













































































                                        Popular posts from this blog

                                        How to check contact read email or not when send email to Individual?

                                        Bahrain

                                        Postfix configuration issue with fips on centos 7; mailgun relay