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
-
mister_v
- Posts: 143
- Joined: Sat Jun 20, 2009 5:42 pm
Solved: Upgrade FAT to exFAT
Last edited by mister_v on Mon Feb 17, 2014 5:37 pm, edited 1 time in total.
-
Chris
- Site Admin
- Posts: 132
- Joined: Mon Jul 21, 2008 9:45 am
- Location: Leuven, Belgium
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/exfatCode: Select all
sudo apt-get updateCode: Select all
sudo apt-get install fuse-exfat exfat-utilsThen 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 -lCode: Select all
sudo mkfs.exfat -n NEWLABEL /dev/sdX1Code: Select all
sudo fsck.exfat /dev/sdXnNow you can get write files bigger then 4GB on your disk.
-
mister_v
- Posts: 143
- Joined: Sat Jun 20, 2009 5:42 pm
Re: Upgrade FAT to exFAT
Thanks that worked