LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to mount the NTFS filesystem (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-mount-the-ntfs-filesystem-916117/)

nanba 11-28-2011 10:35 PM

how to mount the NTFS filesystem
 
i just install new proxmox server. now i want to copy file from external hard drive to my lvm. but i can't mount the hard drive because it is an NTFS filesystem. please anyone help..

corp769 11-28-2011 10:47 PM

Hello,

What distro are you using? You most likely need to install the ntfs-3g package on your system in order to be able to read/write to it, and mount it.

Cheers,

Josh

nanba 11-29-2011 01:50 AM

i'm using debian..
i've tried install the ntfs-3g
but i got an error: couldn't find package ntfs-3g

corp769 11-29-2011 06:47 AM

What version of debian are you using? Here is a reference for you - http://wiki.debian.org/NTFS

Roken 11-29-2011 07:07 AM

You may be able to mount it for copying using:

Code:

sudo mkdir /mnt/ntfsdrive
sudo mount -t ntfs /dev/sdaX /mnt/ntfsdrive

Replace sdaX with the actual node of the drive you want to mount. You can then access it with:

Code:

cd /mnt/ntfsdrive
I've used this for quick access to NTFS drives for readonly use without ntfs-3g. I have no idea how robust it is and so wouldn't recommend using it for R/W access.


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