-2

I am trying to help a friend back up some files to an external USB drive from a machine running Ubuntu. The drive is a 1.36 TB big and is using NTFS. From what I can tell I need to reformat it to FAT32. But FAT32 does not seem to be able handle a drive that big.

I tried mkfs -t vfat but it still shows as NTFS on the Ubuntu machine. Which is funny because when I plug it into my Windows 7 machine to format it there it shows up as FAT32. I also tried SwissKnife but it only offered me FAT16 - I want FAT32.

What can I do?

BigMac66
  • 1,528
  • 5
  • 19
  • 35
  • So if you are going to down vote at least say why - how else am I going to know what to do different next time. – BigMac66 Mar 30 '19 at 12:57

1 Answers1

0

What happens when you manually re-mount the drive as vfat?

umount /MOUNTPOINT
mount -t vfat -v /dev/sdXX /MOUNTPOINT
Ansgar Wiechers
  • 193,178
  • 25
  • 254
  • 328