exfat驱动安装

来源:互联网 发布:如何用淘宝联盟返利 编辑:程序博客网 时间:2024/04/28 12:04

原文url: http://code.google.com/p/exfat/wiki/HOWTO

Prerequisites

If there are no binary packages for your OS or you want to get the most recent version, you should compile from source. To do this under GNU/Linux you need to install the following packages:

  • subversion (if you wish to get the source from the repository, see below),
  • scons,
  • fuse-devel (or libfuse-dev),
  • gcc.

Getting the Source

Download tarball with source from the Downloads section or directly from the repository:

svn co http://exfat.googlecode.com/svn/trunk/ exfat-read-only

Compiling

Change directory and compile:

cd exfat-read-onlyscons

Then install the driver:

sudo scons install

Mounting

You need util-linux-ng 2.18 or later to mount exFAT volumes automatically. Anyway, you can mount manually (you'll need root privileges):

sudo mount.exfat-fuse /dev/sdXn /mnt/exfat

where /dev/sdXn is the volume special file, /mnt/exfat is a mountpoint.

Feedback

If you have any questions, issues, suggestions, bug reports, patches, etc. please send an e-mail to themailing list (archive). Do not use the comment field at the bottom of this page, it's for commenting this article itself.


另有一篇安装exfat驱动的网文:http://blog.sina.com.cn/s/blog_6a60817301012kfw.html

ubuntu:
sudo su
add-apt-repository ppa:relan/exfat
apt-get update
apt-get install fuse-exfat exfat-utils
-------------------------------------------------------------------------
fedora amd64:
wget http://exfat.googlecode.com/files/fuse-exfat-0.9.6-1.fc16.x86_64.rpm
wget http://exfat.googlecode.com/files/exfat-utils-0.9.6-1.fc16.x86_64.rpm
sudo yum install fuse-exfat-0.9.6-1.fc16.x86_64.rpm exfat-utils-0.9.6-1.fc16.x86_64.rpm

原创粉丝点击