Mount the disk in NTFS
Install packages for CentOS 5.x
[[email protected] ~]# yum install ntfs-3g
Install packages for CentOS 6.x
[[email protected] ~]# yum install fuse fuse-ntfs-3g dkms dkms-fuse
See information about disks
[[email protected] ~]# fdisk -l
Create a directory where to mount
[[email protected] ~]# mkdir / mnt / sdb1
We mount
[[email protected] ~]# mount -t ntfs-3g / dev / sdb1 / mnt / sdb1
Unmount
[[email protected] ~]# umount / mnt / sdb1