redhat6.5安装ntfs-3g rpm来支持ntfs文件系统挂载

linux安装ntfs-3g模块来支持ntfs文件系统挂载

所需包

fuse-2.9.3.tar.gz

ntfs-3g_ntfsprogs-2011.4.12.tgz

step1. 解压fuse-2.9.3.tar.gz

tar -zxvf fuse-2.9.3.tar.gz

step2. 编译安装fuse

cd fuse-2.9.3

./configure

./make

./make install

可能出现的错误

cofigure:error:c compiler cannot create executables

参考:http://askubuntu.com/questions/347466/configure-error-c-compiler-cannot-create-executables

解决方法:

export PATH="/usr/bin:$PATH"

It looks like you have a non-standard version of the GNU linker ld in your /usr/local/bin directory (possibly installed from source), and your PATH environment variable is set such that the system finds that version before the ‘system‘ version (which should be at /usr/bin/ld). If you want to build using the standard system versions of the build tools, you will need to adjust your PATH environment variable so that it searches /usr/bin ahead of /usr/local/bin

If you want to permanently fix your PATH variable, you will need to find out where you set it originally - probably in your ~/.bashrc file, but other locations are possible. Alternatively, if you just need a temporary fix for this build, you could try

export PATH="/usr/bin:$PATH"

in the terminal before executing the ./configure

step3. 解压ntfs-3g_ntfsprogs-2011.4.12.tgz

tar -zxvf ntfs-3g_ntfsprogs-2011.4.12.tgz

step4. 安装ntfs-3g

cd ntfs-3g_ntfsprogs-2011.4.12

./configure

./make

./make install

step5. 测试

查看那个磁盘是ntfs,然后挂载,假设/dev/sdc1是ntfs文件系统

fdisk -l

挂载/dev/sdc1 的ntfs文件系统设备

mkdir /mnt/hdd

mount -t ntfs-3g /dev/sdc1 /mnt/hdd

如果挂载成功则说明安装正确。

时间: 2024-10-23 20:34:30

redhat6.5安装ntfs-3g rpm来支持ntfs文件系统挂载的相关文章

Centos安装ntfs-3g(解决Centos不支持Ntfs文件格式的问题)

安装fuse 下载: wget http://nchc.dl.sourceforge.net/project/fuse/fuse-2.X/2.9.2/fuse-2.9.2.tar.gz 安装: tar -zxvf tar -zxvf fuse-2.9.2.tar.gz cd fuse-2.9.2 ./configure make make install modprobe fuse fuse是什么看这里,ntfs-3g依赖它所以需要安装. 安装ntfs-3g 下载: wget http://tu

1-18 编译安装内核支持ntfs文件系统

大纲: 源码编译Linux内核 使用Linux内核模块 实战:编译一个NTFS内核模块,实现Linux挂载NTFS文件系统并实现读写功能 =================================================================== 一.源码编译Linux内核 通常我们想对内核进行升级时,可通过下载源码包,编译内核的方式,对内核进行升级 源码包的下载地址在:www.kernel.org 我们可以直接在linux系统中直接下载,如下命令: wget http

centos7支持ntfs

简单搜索了一下,发现一个很好的安装步骤,简洁有效,已经试验. rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm yum clean all yum makecache yum install ntfs-3g Linux学习,http:// linux.it.net.cn shutdown -r now IT网,http://www.it.net.cn 重启后

编译Linux内核4.6.3使其支持NTFS文件系统

编译安装4.6.3内核,并使其支持NTFS文件系统   在编译内核之前的虚拟机环境搭建,虚拟机硬盘可用空间不得小于7G,内存需大大于2.5G, 根据个人电脑配置适当调整,可提高效率.   一. 下载内核源码包 https://www.kernel.org/     二.查看虚拟机是否具备编译条件 1) [[email protected] /]# rpm -q make make-3.82-21.el7.x86_64 [[email protected] /]# rpm -q gcc gcc-4

redhat6.4 安装oracle 10g error

环境: 操作系统:redhat6.4 64位 数据库版本:10.2.0.4 64位 搭建测试原因:http://718693.blog.51cto.com/708693/1682945 说明:在redhat6.4上安装10.2.0.1 64位接着再升级到10.2.0.4 64位,在执行DBCA报如下错误 UnsatisfiedLinkError exception loading native library: njni10 ---------- 主要是因为一些包没有安装上,检查glibc的包是

RedHat6.5 安装OpenStack all in one-RDO方式

OpenStack是一个开源的云平台,由各个组件协同工作,安装非常复杂.RedHat有个关于Openstack的项目RDO,可以简化安装过程,但是如果真按RDO所说的三步去安装,发现安装过程中还是有很多报错,不得不查询Openstack的官方文档.本来准备在新出的RHEL7上安装的,发现缺少libselinux(epel7)的附加包,有可能还没编译.所有选择RedHat6.5作为底层操作系统. 安装环境准备 1.硬件环境: DELL R410  四核4G内存,双网卡(本实例中只用到一个网卡),2

【linux】之Nginx安装使用和配置SSL支持

本文采用的是nginx源码安装 1.下载nginx源码包 wget http://nginx.org/download/nginx-1.8.0.tar 或者登录nginx官网下载更高版本 2.nginx安装需要其他环境的支持 环境是否安装了gcc rpm -qa|grep gcc 如果没有则需要yum install gcc-c++ 环境是否安装了pcre 该文件为正则表达式库.让nginx支持rewrite需要安装这个库 如果没有安装可以采用yum安装  yum -y install pcre

redhat6.5安装postgresql8.4数据库

Redhat6.5安装postgresql8.4数据库 step1 先移除原有的postgresql数据库(如果有),否则直接跳过 rpm -qa | grep postgresql* rpm -ev rpmName step2 下载新的postgresql rpm安装包网址:http://mirrors.sohu.com/centos/6.6/os/x86_64/Packages/wget http://mirrors.sohu.com/centos/6.6/os/x86_64/Package

软件安装与管理--rpm、yum

一.rpm包管理器 1.介绍rpm 在linux系统中,服务是要通过程序来提供的,通过调用API接口编写好之后的源码包文件对于普通用户来说,安装起来较为繁琐.于是人们将源码在编译安装的环境下制作了更加高级的rpm包,它的最大特点是避免了对原软件包的编译安装,以更加简便的安装方式提供给用户.可以使用rpm(RedhatPackage Manager)管理器来进行安装. rpm包格式 2.rpm包管理器 <1>安装 rpm {-i|--install} [install-options] PACK