红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > SuSE

suse挂载移动硬盘出错

发布时间:2008-04-29 11:46:54来源:红联作者:Dnirta
刚刚挂移动硬盘想装个东西,结果盘符出来了,却打不开。有提示

[root@localhost ~]# mount -t ntfs-3g /dev/hdb1 /mnt/c
$LogFile indicates unclean shutdown (0, 0)
Failed to mount '/dev/hdb1': 不支持的操作
Mount is denied because NTFS logfile is unclean. Choose one action:
Boot Windows and shutdown it cleanly, or if you have a removable
device then click the 'Safely Remove Hardware' icon in the Windows
taskbar notification area before disconnecting it.

找到解决方法

1,kelsen@kelsenlinux:~$ sudo fdisk -l |grep NTFS
出现如下硬盘信息:
/dev/sda1 * 1 1912 15358108+ 7 HPFS/NTFS
/dev/sda5 1913 6374 35840983+ 7 HPFS/NTFS
/dev/sda6 6375 8337 15767766 7 HPFS/NTFS
/dev/sdb1 1 5099 40957686 7 HPFS/NTFS
/dev/sdb2 5100 10198 40957717+ 7 HPFS/NTFS
/dev/sdb3 10199 19457 74372917+ 7 HPFS/NTFS

2,kelsen@kelsenlinux:~$ sudo ntfs-3g /dev/sdb1 /media/sdb1

出现如下信息:
$LogFile indicates unclean shutdown (0, 0)
Failed to mount '/dev/sdb1': Operation not supported
Mount is denied because NTFS is marked to be in use. Choose one action:

有三种选择方案:
Choice 1: If you have Windows then disconnect the external devices by
clicking on the 'Safely Remove Hardware' icon in the Windows
taskbar then shutdown Windows cleanly.

Choice 2: If you don't have Windows then you can use the 'force' option for
your own responsibility. For example type on the command line:

mount -t ntfs-3g /dev/sdb1 /media/sdb1 -o force

Or add the option to the relevant row in the /etc/fstab file:

/dev/sdb1 /media/sdb1 ntfs-3g defaults,force 0 0
3,sudo mount -t ntfs-3g /dev/sdb1 /media/sdb1 -o force
4,sudo mount -t ntfs-3g /dev/sdb2 /media/sdb2 -o force
5,sudo mount -t ntfs-3g /dev/sdb3 /media/sdb3 -o force

补充:
3,4,5我执行完后,虽然也是报错,但强制双击硬盘盘符可以进入,然后就挂载上罗

原因大概是windows没正常关机,啥时候地事,咋不知道尼。明天查下windows分区。
文章评论

共有 2 条评论

  1. blueycx 于 2008-04-29 22:07:59发表:

    看的有点晕

  2. 太平桥 于 2008-04-29 12:58:05发表:

    好像是应该将移动硬盘插回Windows,
    然后执行Windows下移动存储器的安全移除步骤。

    (hl):hao