码迷,mamicode.com
首页 > 移动开发 > 详细

centos挂载移动硬盘

时间:2015-03-30 15:59:23      阅读:1263      评论:0      收藏:0      [点我收藏+]

标签:

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

 

centos挂载移动硬盘

标签:

原文地址:http://www.cnblogs.com/x113/p/4378181.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!