centos挂载移动硬盘
yum install ntfs-3g
sudo mount -t ntfs-3g /dev/sdc1 /mnt/mobiledisk
出现错误:
Mount is denied because the NTFS volume is already exclusively opened. The volume may be already mounted, or another software may use it which could be identified for example by the help of the ‘fuser‘ command
You should try to unmount the drive first :
sudo umount /dev/sdc1
挂载可以直接使用:
sudo mount /dev/sdc1 /mnt/mobiledisk
卸载:
umount 卸载
umount -av (全部卸载,再重新挂载)
查看已经挂载的分区
mount
开机自动挂载:vi /etc/fstab,添加一行:
/dev/sdc1 /mnt/mobiledisk ntfs-3g defaults 0 0
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。