怎么让debianexfat最大支持多少gExfat格式的硬盘读写

&如果您的 U 盘、移动硬盘既要用于 PC 又要用于苹果电脑,Mac OS X 系统的 HFS+ 和 Windows 的 NTFS 格式显然都不行……HFS+ 在 Windows 下不识别,NTFS 格式的 U 盘、移动硬盘插在苹果电脑上只能读不能写。格式化成 FAT32 显然可以支持两个系统,但单一文件大于 4GB 就歇菜。&&&&但苹果电脑 Mac OS X 10.6.5 系统做出了一项意义重大的升级:支持 exFAT 磁盘格式,格式化成 exFAT 格式的 U 盘、移动硬盘在 Windows PC 上和苹果电脑 Mac OS X 系统下均能读写,而且支持超过单个体积超过 4 GB 的大文件。&&&&下面是将 U 盘、移动硬盘格式化成 exFAT 格式的方法,以及 exFAT、FAT32、HFS+ 三种格式下同一块 U 盘的读写速度测试苹果电脑 Mac OS X 系统下把U盘、移动硬盘格式化成exFAT格式&&&&点击苹果电脑屏幕右上角的放大镜按钮,Sportlight 搜索“磁盘工具”,在磁盘工具侧边栏选择要格式化的 U 盘或移动硬盘分区,右侧选择“抹掉”标签,在格式下拉菜单里选择 ExFAT 即可。如上图所示。Windows 系统下把U盘、移动硬盘格式化成exFAT格式&&&&Windows 7 和 Vista 默认就支持 exFAT 格式,如果是 XP 系统,要下载 KB955704 补丁:&&&&至于 exFAT 格式的 U 盘的读写速度,下面是同一块 U 盘在同一台电脑(我的 Macbook Pro)上的读写速度测试,测试软件为&。FAT32、HFS+、exFAT 格式的 U 盘读写速度测试&&&&顺时针依次是 FAT32、HFS+、exFAT 格式下 U 盘读写速度测试结果,不太妙。所以:只把 U 盘和移动硬盘的一个分区(专门用于 PC、Mac 之间交换文件)格式化成 exFAT 就行了。KEEP FOR REF:&/post/use-u-disk-hdd-on-windows-pc-and-mac-os-x-4gb-exfat.php
随笔 - 387
评论 - 202
随笔分类(440)
随笔档案(378)
文章档案(6)
新闻档案(1)
//crossdomainxml/
Peanut Butter Utilities - AS3 Libraries that I built/use and other may find useful
This framework approaches to arrange graphical objects without overlapping them or corrupting the size ratios while keeping a minimal distance to each other and trying to distribute them evenly.
a set of AS3 classes and some MXML examples to provide an alternative for Flex Framework
Base UI classes
Couple of RPC classes
Event, call, callback mapping
Embedded resources management
Styles (coming soon)
Skins (coming soon)
as3workshop!!
manage-depth-with-as3
Robotlegs is a pure AS3 micro-architecture (framework) with a light footprint and limited scope.
Blog-Links
ActionScript 3 Tutorials
Preview demos of Flash/Flex/AIR
A magical discussion of software, economics, and other assorted theories.
Robotlegs as3
Flex and AS3
Flash and ActionScript for the masses. With a little Python thrown in.
Covering J2EE Security and WebLogic Topics
Thoughts of a Flash Geek
Flash, Flex, Ruby – Cape Town, SA
Design Pattern
Enterprise Modules Project
IDE 2.0: Bringing Collective Intelligence into Software Development
Intelligence Code Recommenders
The maker of nWire, a cutting edge source code exploration and visualization tool for Java and PHP, reaffirms its' commitment to the Eclipse community, offers free Eclipse downloads.
Scout is a framework to implement modern business applications. It features a simple and solid architecture, support for SOA, support for Corporate Identity and Corporate Design, mature GUI elements and much more. Goal: The goal of Scout is to substantially reduce development time for fully SOA and J2EE compliant business applications.
OSGi Sever Runtime
Siemens Enterprise Use Equinox to Power "Communication as a Service
Favorite Links
Gallery of wonderful webs
clockmaker.jp labs
colortools
design-patterns-cheat-sheet
Web 2.0 Icons
/gimite/web-socket-js
Pro GIT smart-http
Identity Management
Apache Shiro is a powerful and easy-to-use security framework that performs authentication, authorization, cryptography, and session management. With Shiro’s easy-to-understand API, you can quickly and easily secure any application – from the smallest mobile applications to the largest web and enterprise applications.
ESOE has been built utilizing open standards from OASIS such as SAML 2.0 and XACML 2.0 to provide the greatest amount of flexibility for implementors possible. This focus on open standards ensures that ESOE can integrate with solutions from other vendors easily who support these industry wide standards. These vendors include Google, Sun, Oracle and IBM.
The following specifications are supported:
OpenID Authentication 2.0
OpenID Authentication 1.1 (in compatibility mode)
OpenID Attribute Exchange 1.0
OpenID Simple Registration 1.0 and 1.1, draft 1
OpenID Provider Authentication Policy Extension 1.0
OpenID Information Cards 1.0, draft 1
IT resources
Configuring+a+Delegated+Authentication+Directory
Membase is a distributed key-value database management system
Gosu is a programming language for the Java Virtual Machine (JVM).
Version Control
积分与排名
阅读排行榜
评论排行榜Linux系统下挂载exFAT和NTFS格式硬盘的驱动安装和配置
先说挂载exFAT格式的移动硬盘,最近刚刚做了个双,一个盘是Windows7,硬盘的格式是exFAT的,
想在系统下面访问Windows7下面的文件,问题出现了:mount不了。
# mount &t exfat /dev/sda2 /mnt/d
mount: unknown filesystem type &exfat&
这是由于RedHat 6.0上无法识别exFAT格式的分区。
对于移动硬盘或者U盘,FAT32支持的文件不能大于4G,所以只能格式化成exFAT,
如下记录一下怎样在Linux下挂载exFat格式的各种硬盘.
sudo apt-get install subversion scons libfuse-dev gcc
svn co /svn/trunk/ exfat-read-only
cd exfat-read-only
sudo scons install
rm &rf exfat-read-only
sudo mount -t exfat -o iocharset=cp936 /dev/sda2 /mnt/d
sudo umount /mnt/d
下面是挂载NTFS格式的,
其中要使用一个开源软件NTFS-3g,它支持在Linux下面读写NTFS格式的分区。它非常的快速,同时也很安全。它支持Windows 2000、XP、2003和Vista,并且支持所有的符合POSIX标准的磁盘操作。ntfs-3g的目的是为了持续的发展,各硬件平台和操作系统的用户需要可靠的互通与支持ntfs的驱动,ntfs-3g可以提供可信任的、功能丰富的高 性能解决方案。经过了12年多的发展,ntfs-3g已经逐渐稳定。(官网翻译出来)
#wget /opensource/ntfs-3g_ntfsprogs-.tgz
编译安装ntfs-3g
# tar zxvf& ntfs-3g_ntfsprogs-.tgz
# cd ntfs-3g_ntfsprogs-
# ./configure
# make install
# fdisk -ll
Device Boot&&&&& Start&&&&&&&& End&&&&& Blocks&& Id& System
/dev/sda1&& *&&&&&&&&&& 1&&&&&& 2600&&&&& 204800&& 83& HPFS/NTFS
/dev/sda2&&&&&&&&&&& 5223&&&&&& 1459*&&& +&& f& extFAT
/dev/sda3&&&&&&&&&&& ****&&&&&&& ****&&& && 83& Linux
/dev/sda4&&&&&&&&&&& 700*&&&&&&& 522*&&&& 4194304&& 82& Linux SWAP
通过上面的查看,我们知道/dev/sda1是NTFS格式
1. 我们要建一个挂载点的目录,比如是在/mnt/目录下建一个c 的目录:
# mkdir /mnt/c
2. 把/dev/sda1 挂载到/mnt/c 中,这样我们如果查看/dev/sda1磁盘内容时,就会在/mnt/c 中找得到
# mount -t ntfs-3g -o nls=utf8,umask=000 /dev/sda1 /mnt/c
开机分区自动挂载
应把一下命令放入/etc/fstab中
/dev/sda1 /mnt/c ntfs-3g umask=000,iocharset=utf8 0 0
/dev/sda2 /mnt/d exfat& umask=000,iocharset=cp936 0 0
# cp -r -f srcDir dstDir&&& //复制目录文件。
# rm -rf dstDir&&& //删除目录文件。
取消磁盘挂载:umount命令
# umount /mnt/c
# umount /mnt/d
注:mount -t 文件格式-o 选项参数 磁盘分区挂载点目录名
比如:mount -t vfat -o iocharset=utf8,umask=000 /dev/sda2 /mnt/d
再如:mount -t ntfs -o nls=utf8,umask=000 /dev/sda1 /mnt/c
-t ntfs 说明文件系统的格式是ntfs的;-o是选项 ,nls=utf8 ,意思是Native Language Support(本地语言支持)是utf8,也就是大家常说的语言编码,也可以换成iocharset=utf8;
RedHat Enterprise 6.0默认的语言编码就是utf8的,这样能显示出中文来;umask=000表示所有的用户组都可读可写,但因NTFS在Linux中写入不安全,所以只能读,不能写入.
(window.slotbydup=window.slotbydup || []).push({
id: '2467140',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467141',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467142',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467143',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467148',
container: s,
size: '1000,90',
display: 'inlay-fix'怎么让debian支持Exfat格式的硬盘读写?_debian吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:9,109贴子:
怎么让debian支持Exfat格式的硬盘读写?收藏
系统是debian7.7,已经安装了exfat-utils和exfat-fuse了,但是老是提示出错:获取文件“/media/(要挂载的硬盘名)”的信息出错:传输端点尚未连接请选择其它查看器,然后再试一次。或者是:无法显示文件夹内容。
抱歉,无法显示“(要挂载的硬盘名)”的全部内容:传输端点尚未连接。怎么办啊?
挂机一个月得百万,你还蓝瘦香菇么?
求助啊!没有人用ExFat文件系统的人吗?
没有此问题,一定是没连接上(安卓机经常这样)。可以手动mount试试
这个问题还没解决啊!
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或

我要回帖

更多关于 debian exfat 的文章

 

随机推荐