Mounting a Windows XP NTFS partition in Linux
Send this article to a friend
How can I access my Windows XP NTFS partition from Linux? The following tutorial explains how to gain access to a Windows NTFS partition using Linux. Reading or accessing NTFS partitions in Linux is important for many reasons. Some users repair Windows Operating environments using Linux, while others use a dual boot operating environment and would like to have access to their Windows File system.
The good news is that this is not a complicated task to accomplish. As a matter of fact, for those using a Linux version derived from Debian, (I.E. Ubuntu, Knoppix, and Debian, etc..) the process can be accomplished in a matter of seconds.
How to Mount a Windows NTFS file system partition in Linux:
- Open a terminal and type sudo su
- Type fdisk -l (note which partition contains the NTFS file system)
- Type mkdir /media/windows (This directory is where we will access the partition)
- Type mount /dev/hda1 /media/windows/ -t ntfs -o nls=utf8,umask=0222
- Type cd /media/windows (Moves us to the windows directory)
- Type ls to list the files on the NTFS partition
Notes: Alternately, you can navigate to the media/windows directory outside of terminal to view the files.
To unmount the Windows NTFS partiton, from the terminal simply type umount /media/windows/
We spend countless hours testing and writing these tutorials. If you found this information useful, feel free to make a donation.

















