Linux服务器联网,下载ntfs-3g rpm包
yum install -y ntfs-3g --downloadonly --downloaddir=./
rpm包复制到需要安装的所在服务器 rpm -ivh ntfs-3g*.rpm
mount -t ntfs-3g /dev/sdd2 u/
参考:
Open Source: NTFS-3G
Latest Download - http://www.tuxera.com/community/open-source-ntfs-3g/
NTFS-3G Manual - http://www.tuxera.com/community/ntfs-3g-manual/
stable version - https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2016.2.22.tgz
#Installation
tar zxvf /tmp/ntfs-3g_ntfsprogs-2016.2.22.tgz
cd ntfs*
#yum install gcc
./configure
make
make install # or 'sudo make install' if you aren't root
#Usage
fdisk -l
mkdir -p /mnt/windows
mount -t ntfs-3g /dev/sda1 /mnt/windows
#You can also make NTFS to be mounted during boot by adding the following line to the end of the /etc/fstab file:
vi /etc/fstab
/dev/sda1 /mnt/windows ntfs-3g defaults 0 0
————————————————
版权声明:本文为CSDN博主「三千の世界」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_38604355/article/details/102838731
网友评论