实战Linux内核编译(支持NTFS)(2)

wKiom1fX35LyyA8iAAA-gyR9D5I534.png

实战-编译一个NTFS内核模块,实现linux挂载NTFS文件系统

安装 fuse:

[root@localhost ~]# tar zxvf fuse-2.8.3.tar.gz

[root@localhost ~]# cd fuse-2.8.3

[root@localhost fuse-2.8.3]# ./configure 

[root@localhost fuse-2.8.3]# make && make install

安装:ntfs-3g

[root@localhost ~]# tar zxvf ntfs-3g-2011.1.15.tgz 

[root@localhost ~]# cd ntfs-3g-2011.1.15

[root@localhost ntfs-3g-2011.1.15]# ./configure 

[root@localhost ntfs-3g-2011.1.15]# make && make install

挂载:

插一个NTFS格式分的U盘。 然后把U盘导入到虚拟机中

[root@localhost ~]# mount -t ntfs-3g /dev/sdb1 /opt/

开机自动挂载:

[root@localhost ~]#  vim /etc/fstab

/dev/sdb1             /opt                 ntfs-3g   defaults        0 0

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/14848.html