在 NAS 中安装 NTFS 驱动器

在 NAS 中安装 NTFS 驱动器

我有 2 个 3TB 硬盘,之前放在 Buffalo NAS 中,格式为 NTFS。我想摆脱 NAS,将硬盘移到 Ubuntu 机器中,但安装时遇到了麻烦。

我迄今已采取的措施:

1- 运行 fdisk -l,以下输出针对的是所讨论的 2 个驱动器。考虑到文件大小,我想要挂载 sdb6 和 sdc6。

Disk /dev/sdb: 2.75 TiB, 3000592982016 bytes, 5860533168 sectors
Disk model: WDC WD30EFRX-68E
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 88E57593-A093-4314-8F76-7973CD42794E

Device        Start        End    Sectors   Size Type
/dev/sdb1        34    2000000    1999967 976.6M Microsoft basic data
/dev/sdb2   2000896   11999231    9998336   4.8G Microsoft basic data
/dev/sdb3  11999232   12000000        769 384.5K BIOS boot
/dev/sdb4  12000001   12000001          1   512B Microsoft basic data
/dev/sdb5  12000002   14000000    1999999 976.6M Microsoft basic data
/dev/sdb6  14000128 5843750911 5829750784   2.7T Microsoft basic data

Partition 1 does not start on physical sector boundary.
Partition 4 does not start on physical sector boundary.
Partition 5 does not start on physical sector boundary.


Disk /dev/sdc: 2.75 TiB, 3000592982016 bytes, 5860533168 sectors
Disk model: WDC WD30EFRX-68E
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: AACC386C-088B-4795-8212-52BB14A43F6C

Device        Start        End    Sectors   Size Type
/dev/sdc1        34    2000000    1999967 976.6M Microsoft basic data
/dev/sdc2   2000896   11999231    9998336   4.8G Microsoft basic data
/dev/sdc3  11999232   12000000        769 384.5K BIOS boot
/dev/sdc4  12000001   12000001          1   512B Microsoft basic data
/dev/sdc5  12000002   14000000    1999999 976.6M Microsoft basic data
/dev/sdc6  14000128 5843750911 5829750784   2.7T Microsoft basic data

Partition 1 does not start on physical sector boundary.
Partition 4 does not start on physical sector boundary.
Partition 5 does not start on physical sector boundary.

2-创建 2 个目录,分别称为 /media/drive1 和 /media/drive2

3-尝试了如下的各种安装技术,均得到相同的输出:

sudo mount -t ntfs -o nls=utf8,umask=0222 /dev/sdb6 /media/drive1

NTFS signature is missing.
Failed to mount '/dev/sdb6': Invalid argument
The device '/dev/sdb6' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

4- 我搜索了一些查询,并尝试

sudo ntfsfix /dev/sdb6

输出结果如下:

Mounting volume... NTFS signature is missing.
FAILED
Attempting to correct errors... NTFS signature is missing.
FAILED
Failed to startup volume: Invalid argument
NTFS signature is missing.
Trying the alternate boot sector
Unrecoverable error
Volume is corrupt. You should run chkdsk.

我不认为驱动器上存在“错误”,因为它们今天早上在 NAS 中运行良好。两个驱动器都出现相同的错误。

非常感谢您的帮助 - 理想情况下,我希望最终让它们在 fstab 中自动安装,但此时只需手动安装它们就会有所帮助。

提前致谢!

相关内容