Mounting NTFS filesystem on CentOS 5.2 http://stackoverflow.com/questions/145209/mounting-ntfs-filesystem-on-centos-5-2 fdisk -l get the harddrive partition, ie /dev/sda2 then mount /dev/sda2 /mnt/windows if this fails, try a yum install ntfs-3g * Just noted this is not included by default, so you can check out NTFS-3g here, and find a suitable package for your system. to auto mount this, add a line to /etc/fstab saying /dev/sda2 /mnt/temp ntfs defaults 0 0 and this should auto mount on a reboot