Link to home
Start Free TrialLog in
Avatar of prabinchamling
prabinchamling

asked on

can linux read fat or ntfs?

hello friends, this is prabin. I want to know that can linux able to read fat or ntfs? if it can, how?
please help me..

thanks
ASKER CERTIFIED SOLUTION
Avatar of shivsa
shivsa
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
To read NTFS, u have to install NTFS specific rpms for linux. u can find them from here.
http://linux-ntfs.sourceforge.net//

FAT format is common to linux and windows. so it can be read without much problem.
for FAT32, u have to mount FAT partition like this.

mount /dev/hdax /mnt/win -t vfat
where hdax is the windows partition number, and /mnt/win is the path where U will mount the files (U nead to create the folder win with mkdir command).
once mounted u can goto /mnt/win and do whatever u wish to do.
Avatar of paullamhkg
paullamhkg

well shivsa already gave you the answer, and yes linux can read FAT16 and/or FAT32, and NTFS.

But becareful on write something to NTFS, 'cos of the security flag is difference between NTFS and ext3/ext2 (linux file system).

for mounting the FAT32/FAT16, shivsa already show you how, if you want to have the FAT16/FAT32 mount to your linux everytime you startup your linux box you have to edit the file called fstab in /etc, below is an eg.

/dev/hdax               /win             fat32    defaults        1 2

so everytime you start your linux it will mount the FAT32/FAT16 partition into /win

for NTFS please also have a look here http://linux-ntfs.sourceforge.net/info/ntfs.html which is very good place to understand NTFS with linux.

if you need to read the linux from your windoz, you have to use the 3rd parties software have a look here http://uranus.it.swin.edu.au/~jn/linux/explore2fs.htm

Hope this info can help
the question is answered.
it's true as I said shivsa gave the answer, I gave some add on like explore2fs
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:
Answered by shivsa
Please leave any comments here within the next four days.

PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!

khkremer
EE Cleanup Volunteer