Making the move from Windows to Linux can be a tough one, especially if you have a hard time moving your data. Here is a way to access your NTFS Windows partition from a standard distro of linux, such as ubuntu.

  1. Open a terminal and su to root
  2. sudo su

  3. Find the NTFS Partition
  4. fdisk -l

  5. Create a place to mount your NTFS Partition
  6. mkdir /mnt/windows

  7. Mount the NTFS Partition, in my example the NTFS partition is on /dev/hda1.
  8. mount /dev/hda1 /media/windows/ -t ntfs -o nls=utf8,umask=0222

  9. Test that you can read it
  10. ls /mnt/windows

Related Posts

If you have a question ask here