centos 无法挂载NTFS格式磁盘

NTFS-3G + Ntfsprogs

http://www.tuxera.com/community/ntfs-3g-download/  下载程序软件

./configure --prefix="/usr/local/ntfs
make
make install # or 'sudo make install' if you aren't root

mount -t ntfs-3g /dev/sda1 /mnt/windows

下面是遇到的无法umount的解决办法

[username@xxx /]# umount /localback/

umount: /localback: device is busy.

        (In some cases useful info about processes that use

         the device is found by lsof(8) or fuser(1))

[root@shoushanyinyue /]# fuser -m /localback/  -->fuser查看那些程序的进程

/localback/:          1298c

[root@shoushanyinyue /]# kill -9 1298

[root@shoushanyinyue /]# umount /localback/


你可能感兴趣的:(centos,挂载NTFS格式磁盘)