LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Help with my NTFS partition (https://www.linuxquestions.org/questions/linux-newbie-8/help-with-my-ntfs-partition-428829/)

Erick Sanabria Calvo 03-26-2006 10:23 PM

Help with my NTFS partition
 
Hi everybody!
Im new on linux.I got the Ubuntu distribution, so I decided to install it on my computer in which I had already installed WinXp .Everything is Ok, both systems are running pretty good, but when I use Linux, I can't see the data from my WinXp partitions.
So I would like to have a little help, because I need to move some files from WinXp to Linux and I don't know what to do!
Thanks!

RobertP 03-26-2006 10:32 PM

List your hard drive partitions:
cat /proc/partitions
Typically, XP will be on the first partition on the first IDE drive, /dev/hda1

In that case, as root,
mkdir /mnt/xp
mount -t ntfs /dev/hda1 /mnt/xp -o ro
ls /mnt/xp

You should now be able to read files from the XP partition and copy them where you want, say, /home/you/XP
su you
cd
mkdir ~/XP
cp -R /mnt/xp/* ~/XP/
In place of the * you probably want your particular directories.

Mara 03-27-2006 03:18 PM

Moved: This thread is more suitable in Linux-Newbie and has been moved accordingly to help your thread/question get the exposure it deserves.


All times are GMT -5. The time now is 05:29 AM.