Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Always prompt module fuse not found to do when attaching NTFS disk under Linux system

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail what to do with module fuse not found when connecting NTFS disk under Linux system. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.

1. First, confirm the Linux kernel.

[root@localhost~] # uname-r-p 2.6.18-194.el5 i686

two。 Download the rpm package of the corresponding kernel from http://sourceforge.net/projects/linux-ntfs/files/

If you can't find an exact match, you can find the closest one. Mine didn't find an exact match. What I downloaded was:

Kernel-module-ntfs-2.6.18-128.1.1.el5-2.1.27-0.rr.10.11.i686.rpm

3. Install the RPM package

Rpm-ivh kernel-module-ntfs-2.6.18-128.1.1.el5-2.1.27-0.rr.10.11.i686.rpm

4. Installation module

Use find /-name ntfs to find the installation directory of the ntfs module / lib/modules/2.6.18-128.1.1.el5/kernel/fs/ntfs, enter that directory, and execute insmod ntfs.ko.

5. Check to see if the ntfs module is loaded correctly

[root@localhost~] # dmesg | grep NTFS NTFS driver 2.1.27 [Flags: r MODULE W MODULE].

Up to now, ntfs read is supported, but ntfs write is not supported. Ntfs-3g needs to be installed again.

6. Download ntfs-3g

Http://ntfs-3g.org/ntfs-3g-2009.4.4.tgz

. / configure

Make

Make install

7. Let's check the partition of the original hard drive first.

[root@localhost~] # fdisk-l Disk / dev/sda: 320.0 GB, 320072933376 bytes 255heads, 63 sectors/track, 38913 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System / dev/sda1 1 8 64228 + de Dell Utility / dev/sda2 * 9 6535 52428127 + 7 HPFS/NTFS / dev/sda3 6536 38913 260076285 f W95 Ext'd (LBA) / dev/sda5 6536 13062 52428096 7 HPFS/NTFS / dev/sda6 13063 35039 176530221 7 HPFS/NTFS / dev/sda7 35040 35052 104391 83 Linux / dev/sda8 35053 38913 31013451 8e Linux LVM

8. Mount the hard disk

Mkdir / media/disk_d

Mount / dev/sda5 / media/disk_d-t ntfs-3g

Let's go and have a visit after success.

9. Power on and load automatically

Write a mount script first:

First write a mount script

# cd / home

# vim mount

Enter:

#! / bin/bash

Mount / dev/sda5 / media/disk_d-t ntfs-3g

Save the file, modify permissions:

# chmod uplix mount

Add the following line to / etc/rc.d/rc.local:

Sh. / home/mount

The next time it is turned on, it will be mounted automatically.

This is the end of the article on "what to do with module fuse not found when connecting NTFS disk under Linux system". I hope the above content can be helpful to you so that you can learn more knowledge. if you think the article is good, please share it out for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report