Hi
I want to upgrade my external usb-disk from FAT to exFAT,
so it can handle files bigger than 4GB.
I'm using Ubuntu linux,
standard it has no support for exFAT.
Solved: Upgrade FAT to exFAT
Solved: Upgrade FAT to exFAT
Last edited by mister_v on Mon Feb 17, 2014 5:37 pm, edited 1 time in total.
Re: Upgrade FAT to exFAT
First of all you need to install the drivers
To add the correct repository:
To update your package list:
To install fuse-exfat and exfat-utils packages:
Then upgrade you external drive.
It should keep your data on the drive,
But just to be sure make a backup.
You can get a list of all your drives:
now covert the files system with the following command:
Optional you can do a file system check:
Now you can get write files bigger then 4GB on your disk.
To add the correct repository:
Code: Select all
sudo apt-add-repository ppa:relan/exfat
Code: Select all
sudo apt-get update
Code: Select all
sudo apt-get install fuse-exfat exfat-utils
Then upgrade you external drive.
It should keep your data on the drive,
But just to be sure make a backup.
You can get a list of all your drives:
Code: Select all
sudo fdisk -l
Code: Select all
sudo mkfs.exfat -n NEWLABEL /dev/sdX1
Code: Select all
sudo fsck.exfat /dev/sdXn
Now you can get write files bigger then 4GB on your disk.
Re: Upgrade FAT to exFAT
Thanks that worked