Kubuntu 8.10 突然不能mount硬盘了

CPU/显卡/打印机/USB设备等硬件问题
回复
tusooa
帖子: 6548
注册时间: 2008-10-31 22:12
系统: 践兔
联系:

Kubuntu 8.10 突然不能mount硬盘了

#1

帖子 tusooa » 2009-02-28 16:28

Kubuntu 8.10
偶然一次mount失败,/windows/data(sda8挂载的文件夹)里全空
然后挂载就一直错误,包括用sudo mount 命令
其他分区也挂不上去,直接回到/

fstab文件内容:

代码: 全选

# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda10
UUID=57c92374-fa60-4d4b-8970-7ab4d66a427d / ext3 relatime,errors=remount-ro 0 1
# /dev/sda9
UUID=785e5136-61b0-4e27-8445-7a3239b3dabb /boot ext3 relatime 0 2
# /dev/sda12
UUID=3f3487ad-2584-43bf-adc5-613b0fd33c09 /home ext3 relatime 0 2
# /dev/sda8
UUID=F694F7BD94F77F05 /windows/data ntfs defaults,umask=007,gid=46 0 1
# /dev/sda11
UUID=84ed7454-bd6e-40a1-97ce-e3cb0efa9c21 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
附件
1.png

代码: 全选

] ls -ld //
AuirEx
帖子: 154
注册时间: 2007-04-22 21:52

Re: Kubuntu 8.10 突然不能mount硬盘了

#2

帖子 AuirEx » 2009-02-28 17:36

你什么意思咯?
是dolphin文件浏览器那里自动mount不上去是不?
想那样的话,fstab里面就不要用这行呀

代码: 全选

UUID=F694F7BD94F77F05 /windows/data ntfs defaults,umask=007,gid=46 0 1
tusooa
帖子: 6548
注册时间: 2008-10-31 22:12
系统: 践兔
联系:

Re: Kubuntu 8.10 突然不能mount硬盘了

#3

帖子 tusooa » 2009-02-28 22:03

以前是自动挂载的,现在怎么样都挂载不了(所有ntfs分区)

代码: 全选

] ls -ld //
tusooa
帖子: 6548
注册时间: 2008-10-31 22:12
系统: 践兔
联系:

Re: Kubuntu 8.10 突然不能mount硬盘了

#4

帖子 tusooa » 2009-03-02 21:05

用ntfs-3g模式可以挂载

代码: 全选

tusooa@tusooa-laptop:~/Downloads/unzip/wqy-zenhei$ sudo mount -t ntfs /dev/sda2 /mnt/w7os/
[sudo] password for tusooa: 
$LogFile indicates unclean shutdown (0, 0)
Failed to mount '/dev/sda2': 操作不支持   
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/sda2 /mnt/w7os/ -o force

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

            /dev/sda2 /mnt/w7os/ ntfs-3g force 0 0
tusooa@tusooa-laptop:~/Downloads/unzip/wqy-zenhei$ sudo mount -t ntfs /dev/sda8/mnt/data/
$LogFile indicates unclean shutdown (0, 0)
Failed to mount '/dev/sda8': 操作不支持
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/sda8 /mnt/data/ -o force

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

            /dev/sda8 /mnt/data/ ntfs-3g force 0 0
tusooa@tusooa-laptop:~/Downloads/unzip/wqy-zenhei$ sudo mount -t ntfs-3g /dev/sda8 /mnt/data/ -o force
$LogFile indicates unclean shutdown (0, 0)
WARNING: Forced mount, reset $LogFile.
fuse: failed to access mountpoint /mnt/data/: 没有该文件或目录
tusooa@tusooa-laptop:~/Downloads/unzip/wqy-zenhei$ sudo mkdir /mnt/data/
tusooa@tusooa-laptop:~/Downloads/unzip/wqy-zenhei$ sudo mount -t ntfs-3g /dev/sda8 /mnt/data/ -o force
tusooa@tusooa-laptop:~/Downloads/unzip/wqy-zenhei$ sudo mkdir /mnt/w7os/
tusooa@tusooa-laptop:~/Downloads/unzip/wqy-zenhei$ sudo mount -t ntfs-3g /dev/sda2 /mnt/w7os/ -o force
$LogFile indicates unclean shutdown (0, 0)
WARNING: Forced mount, reset $LogFile.
tusooa@tusooa-laptop:~/Downloads/unzip/wqy-zenhei$

代码: 全选

] ls -ld //
回复