Copying contents from an NTFS disk to exFAT formatted disk

2

Will there be any problem if I copy contents from an NTFS hard disk to an exFAT hard disk? I will take files from Windows 7 on an NTFS external HDD and copy them on a Fedora machine.

kusur

Posted 2013-08-28T21:20:21.733

Reputation: 123

Possible duplicate of http://superuser.com/questions/240928/convert-ntfs-volume-to-exfat-without-losing-contents

– Moses – 2013-08-28T21:23:09.413

Answers

4

You shouldn't have any issues. You may need to install a NTFS driver in Fedora. To do this run the following commands: To become root:

 su -

To install ntfs-3g:

yum install ntfs-3g

After ntfs-3g is installed you should be able to read/write to the NTFS external hard drive. More info on ntfs-3g can be found here

Mike Stock

Posted 2013-08-28T21:20:21.733

Reputation: 86

3

There will be no problem except that you'll lose all the file permissions (and encrypted files, if any)

Another possible problem if you have tons of small files: your files will consume more space on disk because ExFAT uses 64KB cluster by default

Please explain wasted space on an exFAT formatted external hard drive

phuclv

Posted 2013-08-28T21:20:21.733

Reputation: 14 930