Linux LinuxMint (Ubuntu Ver) 安装exfat 文件系统支持

15 down vote accepted

Installing the below packages only will auto-mounts your exFAT formatted drives ,

sudo apt-get install exfat-fuse exfat-utils

Or try to mount it manually after installing the above packages,

sudo mkdir /media/exfat
sudo mount -t exfat /dev/sdxx /media/exfat

/dev/sdxx - your exfat partition.

In Ubuntu 14.04, exfat-fuse and exfat-utils packages are available in Universe repository. So enable this repository inorder to install these two packages on Ubuntu 14.04.

sudo add-apt-repository universe

And don't forget to update all repositories,

sudo apt-get update

你可能感兴趣的:(Linux LinuxMint (Ubuntu Ver) 安装exfat 文件系统支持)