LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Need help transfering my windows vista files to ubuntu 9.04 (https://www.linuxquestions.org/questions/linux-newbie-8/need-help-transfering-my-windows-vista-files-to-ubuntu-9-04-a-729552/)

cman26 05-30-2009 03:22 PM

Need help transfering my windows vista files to ubuntu 9.04
 
Could anyone help me with this little problem. I am new to ubuntu, just downloaded it 3 day ago, and I have nothing on here and I am just confused as to how to get things from vista to ubuntu.

Thanks,
cman26

colucix 05-30-2009 03:38 PM

I assume you installed Ubuntu as a dual boot system, right? If this is the case, you can mount the Windows Vista partition under Ubuntu, then simply copy the needed file to the Ubuntu partition. First you have to check on which partition (or disk) Windows is mounted. Do
Code:

sudo fdisk -l
to find out. You should see something like this, among the lines:
Code:

/dev/sda2            913      10639    78132127+  7  HPFS/NTFS
take note of the device (/dev/sda2 in my example, but could differ for you). Then mount it using
Code:

sudo mount -t ntfs-3g /dev/something /mnt
change /dev/something with the actual device. After that you should see the content of C:\ under the directory /mnt (the mount point) and you can copy files and directories as usual.

kirukan 05-30-2009 03:52 PM

I think in default ntfs-3g wont come with linux distros, so refer the following link to install ntfs driver.
http://www.ntfs-3g.org/

vibinlakshman 05-30-2009 08:02 PM

Quote:

Originally Posted by kirukan (Post 3557679)
I think in default ntfs-3g wont come with linux distros, so refer the following link to install ntfs driver.
http://www.ntfs-3g.org/

Yes the above user is right.. ntfs wont be added defaultly , add/remove will help to do it .. Install it and find it in system tools option
But if windows is being created with fat32 file system , you should be able to find the drive in linux ..
Its just an information , coz from the post it comes to know that creator of this thread is having ntfs file system

cman26 05-30-2009 09:13 PM

Thank you
 
Thank you all!


All times are GMT -5. The time now is 02:16 PM.