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.
- Open a terminal and su to root
- Find the NTFS Partition
- Create a place to mount your NTFS Partition
- Mount the NTFS Partition, in my example the NTFS partition is on /dev/hda1.
- Test that you can read it
sudo su
fdisk -l
mkdir /mnt/windows
mount /dev/hda1 /media/windows/ -t ntfs -o nls=utf8,umask=0222
ls /mnt/windows
Related Posts
Entries (RSS)