作为IT的工作者,避免不了使用Linux系统,我比较喜欢CentOS,为了锻炼自己对CentOS的熟练操作,就把自己的笔记本装了CentOS,强制自己使用,使自己在平时的工作中逐渐掌握Linux的学习。我现在使用的系统是CentOS6.5 64位版本,但是插入移动硬盘没有办法识别。通过下面三步就可以使CentOS识别NTFS分区的移动硬盘。
第一步:下载rpmforge,下载对应的版本,就是对应CentOS版本,还有32位与64位也要对应上。rpmforge拥有4000多种CentOS的软件包,被CentOS社区认为是最安全也是最稳定的一个软件仓库。
下载地址“http://pkgs.repoforge.org/rpmforge-release/”
我下载的版本是“rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm”
第二步:安装rpmforge,使用如下命令:
# rpm -ivh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
第三步:安装完成后,yum安装ntfs-3g
# yum install fuse-ntfs-3g
<.---------------------亲测Centos 7 下实现------------------------------------------------>
[root@localhost 下载]# cp rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm /opt/
[root@localhost 下载]# cd /opt/ [root@localhost opt]# ll 总用量 20 drwxr-xr-x. 2 root root 4096 10月 29 2014 rh -rw-r--r--. 1 root root 12520 9月 19 21:23 rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm [root@localhost opt]# rpm -ivh r rh/ rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm [root@localhost opt]# rpm -ivh rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm 警告:rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm: 头V3 DSA/SHA1 Signature, 密钥 ID 6b8d79e6: NOKEY 准备中... ################################# [100%] 正在升级/安装... 1:rpmforge-release-0.5.3-1.el7.rf ################################# [100%][root@localhost opt]# yum install fuse-ntfs-3g
已加载插件:fastestmirror, langpacksLoading mirror speeds from cached hostfile * base: mirrors.btte.net * extras: mirrors.btte.net * rpmforge: mirrors.neusoft.edu.cn * updates: mirrors.pubyun.com正在解决依赖关系--> 正在检查事务---> 软件包 fuse-ntfs-3g.x86_64.0.2013.1.13-2.el7.rf 将被 安装--> 解决依赖关系完成依赖关系解决================================================================================ Package 架构 版本 源 大小================================================================================正在安装: fuse-ntfs-3g x86_64 2013.1.13-2.el7.rf rpmforge 549 k事务概要================================================================================安装 1 软件包总下载量:549 k安装大小:1.7 MIs this ok [y/d/N]: yDownloading packages:fuse-ntfs-3g-2013.1.13-2.el7.rf.x86_64.rpm | 549 kB 00:03 Running transaction checkRunning transaction testTransaction test succeededRunning transaction 正在安装 : fuse-ntfs-3g-2013.1.13-2.el7.rf.x86_64 1/1 验证中 : fuse-ntfs-3g-2013.1.13-2.el7.rf.x86_64 1/1 已安装: fuse-ntfs-3g.x86_64 0:2013.1.13-2.el7.rf 完毕!橙色为输入的命令本文<---->之前转载自http://www.cnblogs.com/xia520pi/p/3540411.html,欢迎大家补充指正。