LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   mounting windows partiton (https://www.linuxquestions.org/questions/linux-newbie-8/mounting-windows-partiton-725151/)

vinaytp 05-11-2009 04:59 AM

mounting windows partiton
 
hi all.......
I want to mount windows partiton on linux..i tried using
mount -t ntfs /dev/sda2 /mnt/windows its showing error...can anyone please help me....

Thanks in advance...

bhaslinux 05-11-2009 05:04 AM

what is the error ?

vinaytp 05-11-2009 05:07 AM

NTFS signature is missing.
Failed to mount '/dev/sda2': Invalid argument
The device '/dev/sda2' doesn't have a valid NTFS.
Maybe you selected the wrong device? Or the whole disk instead of a
partition (e.g. /dev/hda, not /dev/hda1)? Or the other way around?

bhaslinux 05-11-2009 05:09 AM

can you double check if it is the right partition ?
check using fdisk -l /dev/sda

linuxlover.chaitanya 05-11-2009 05:13 AM

What distribution are you using? The most probable issue is that your kernel does not have ntfs support built in. You would need ntfs-3g package to be installed to have the ntfs support with your kernel.

yum install ntfs-3g
OR

sudo apt-get install ntfs-3g should install it for you.

Then mount it like

mount -t ntfs-3g /dev/sda2 /mnt/windows

ajlewis2 05-11-2009 06:08 AM

Is sda2 really ntfs? Some are vfat.

linuxlover.chaitanya 05-11-2009 06:45 AM

@ OP

Did any of the solutions work for you? If yes then please tell which so that others with similar issue can get help out of this thread.


All times are GMT -5. The time now is 12:21 AM.