You can mount an exFAT filesystem using the fuse-exfat package, by running the following commands (in a terminal):
- Add the repository:
sudo add-apt-repository ppa:relan/exfat
- Update the package list:
sudo apt-get update
- Install the exfat package:
sudo apt-get install fuse-exfat
- Create the mount folder:
sudo mkdir /media/exfat
- Mount the filesystem (replace sdc1 with your exfat partition):
sudo mount -t exfat /dev/sdc1 /media/exfat
- Read and write to /media/exfat to your heart's desire.
- When you are done, unmount the filesystem:
sudo umount /media/exfat
Steps 1-4 only need to be performed once. Repeat steps 5-7 every time you want to mount the exfat partition (e.g. when you insert an external exfat usb device). Don't forget to unmount when you're done (just before you remove the device), or you might lose data.
Note that this package doesn't (yet?) support formatting a new partition - you'll have to do that under Windows.
I hope this package gets included in the Ubuntu official repositories soon, so the PPA will be unnecessary. Better yet, it should be installed by default, and properly integrated with the automatic device notification system, mounting and unmounting automatically or via the GUI...
Update:
It seems that as of Ubuntu 11.10 only steps 1-3 are needed, and the filesystem is then auto-mounted just like any other filesystem, so you only need to mount it manually (steps 4-7) if you're on an older release, or on some other Linux distro that doesn't support exfat auto-mounting, or if it just doesn't work for some reason.