无法从终端挂载 Windows 分区

无法从终端挂载 Windows 分区

尝试安装名为工作文件我使用了以下命令:

[root@Feddy /]# mount /mnt/'work documents'
mount: can't find /mnt/work documents in /etc/fstab or /etc/mtab

我还检查了/etc/fstab该文件包含以下文本:

#
# /etc/fstab
# Created by anaconda on Wed Jan 25 02:55:31 2012
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=7e62aa40-0b33-472b-8a90-4e2cfa1078e3 /                       ext4    defaults        1 1
UUID=df07538e-e5c8-46cf-ad14-efb2db70839b swap                    swap    defaults        0 0

分区名称是工作文件如该快照所示:

在此处输入图片描述

现在我如何从终端挂载该分区?

答案1

参考:Fedora NTFS-3G


文件系统

如果设备列在/etc/fstab以下内容中,则您的方法有效

# <file system> <dir>           <type>  <options>   <dump>  <pass>
/dev/<NTFS-part>    /mnt/work\ documents    ntfs-3g defaults    0   0

检查分区

fdisk -l由于情况并非如此,您需要知道 NTFS 分区的设备名称。使用以下命令检查输出

# fdisk -l

Disk /dev/sda: 85.9 GB, 85899345920 bytes
255 heads, 63 sectors/track, 10443 cylinders, total 167772160 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0003f6b3

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048   160851967    80424960   83  Linux
/dev/sda2       160854014   167770111     3458049    5  Extended
/dev/sda5       160854016   167770111     3458048   82  Linux swap / Solaris

Disk /dev/sdb: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders, total 16777216 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xbc491472

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *          63     4192964     2096451    7  HPFS/NTFS/exFAT
/dev/sdb2         4192965    16450559     6128797+   5  Extended
/dev/sdb5         4193028    16450559     6128766    7  HPFS/NTFS/exFAT

在上述情况下,/dev/sdb1/dev/sdb5都是 NTFS 分区。

要安装/dev/sdb1,请执行以下操作

mount -t ntfs-3g /dev/sdb1 /mnt/work\ documents

尝试和错误

如果有多个 NTFS 分区,而你不知道使用哪一个,请像下面这样逐个尝试

  1. 尝试sdb1

    mount -t ntfs-3g /dev/sdb1 /mnt/work\ documents
    
  2. 检查内容

    ls /mnt/work\ documents
    
  3. 这不是我想要的,请卸载它

    umount /mnt/work\ documents
    
  4. 尝试下一个,sdb5

    mount -t ntfs-3g /dev/sdb5 /mnt/work\ documents
    
  5. 再次检查内容

    ls /mnt/work\ documents
    
  6. 如果还有更多需要检查,只需重复该mount过程umount

相关内容