How to Mount exFAT Drive on Ubuntu Linux
To be able to mount exFAT filesystem on Ubuntu you’ll need to install the free FUSE exFAT module and tools which provide a full-featured exFAT file system implementation for Unix-like systems.
Before installing the packages make sure the Universe repository is enabled on your system. Open your terminal either by using the Ctrl+Alt+T
keyboard shortcut or by clicking on the terminal icon and type:
sudo add-apt-repository universe
Copy
Once the repository is enabled update the packages index and install the exfat-fuse
and exfat-utils
packages using the following commands:
sudo apt update
sudo apt install exfat-fuse exfat-utils
参考:https://linuxize.com/post/how-to-mount-an-exfat-drive-on-ubuntu/