Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: Mount a Windows partition on a Linux  (Read 2730 times)

0 Members and 1 Guest are viewing this topic.

Vinil

  • Guest
Mount a Windows partition on a Linux
« on: December 28, 2013, 09:17:51 pm »
We can mount a Windows NTFS partition on a Linux machine. For this we need to install 'ntfs3g' package.

To install NTFS-3G:

Code: [Select]
# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm
# rpm -ivh epel-release-6-5.noarch.rpm
# yum install ntfs-3g


Now find Out NTFS Partition Name

Code: [Select]
# fdisk -l

Sample output

 Device   Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          13      102400    7  HPFS/NTFS


Create a mount point:

Quote
# mkdir /mnt/ntfs


To mount the ntfs partition, enter:

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


To unmount, enter:

Quote
# umount /mnt/ntfs

That's it.. ;)