安裝3TB硬碟

安裝3TB硬碟

我有一塊 3TB 希捷 Barracuda 磁碟(型號 st3000dm001)。該磁碟包含資料並使用 ext3。我透過 USB 使用外部 SATA 外殼。我正在嘗試使用我的 ubuntu 機器掛載磁碟。

當我使用 fdisk 時;它發出以下警告:

警告:在“/dev/sdc”上偵測到 GPT(GUID 分割區表)! util sfdisk 不支援 GPT。使用 GNU Parted。

使用 Parted 時,會顯示這一行

/dev/sdc (3001GB)

這幾乎表明磁碟被識別為正確的大小,但當我尋找更多細節時;分開返回以下內容:

錯誤:/dev/sdc:無法辨識的磁碟標籤

如果有人向我指出其他資源或展示如何安裝該磁碟,我將不勝感激。

評論

謝謝大家的意見。該磁碟包含超過 2.5 TB 的數據,但我真的不知道它是如何複製的,因此不確定是否使用了外殼、影印機擴充座或其他方式。

使用指令:parted /dev/sdc

GNU Parted 2.2
Using /dev/sdc
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) P                                                                
Error: /dev/sdc: unrecognised disk label

使用指令:cat /proc/partitions

major minor  #blocks  name

  8   32   2930266584 sdc

它只有一個分區。

使用指令: sudo mount /dev/sdc /mnt/data

mount: you must specify the filesystem type

我認為 mount 會自動偵測檔案系統類型,但隨後在以下命令中明確指定了檔案系統類型

sudo mount -t ext3 /dev/sdc /mnt/data

mount: wrong fs type, bad option, bad superblock on /dev/sdc,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

所以,dmesg |尾巴

[36374.712557] usb 2-2: reset high speed USB device using ehci_hcd and address 2
[36374.991045] usb 2-2: reset high speed USB device using ehci_hcd and address 2
[36375.273782] usb 2-2: reset high speed USB device using ehci_hcd and address 2
[36375.552576] usb 2-2: reset high speed USB device using ehci_hcd and address 2
[36375.830083] usb 2-2: reset high speed USB device using ehci_hcd and address 2
[36375.984427] sd 25:0:0:0: [sdc] Unhandled error code
[36375.984430] sd 25:0:0:0: [sdc] Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[36375.984434] sd 25:0:0:0: [sdc] CDB: Read(10): 28 00 00 00 00 02 00 00 02 00
[36375.984444] end_request: I/O error, dev sdc, sector 2
[36375.984459] EXT3-fs: unable to read superblock

我不明白發生了什麼事!跟gpt有什麼關係嗎?


更深入的分析:

使用指令: sudo gdisk -l /dev/sdc

GPT fdisk (gdisk) version 0.5.1

Partition table scan:
  MBR: not present
  BSD: not present
Caution: invalid main GPT header, but valid backup; regenerating main header
from backup!
Warning! One or more CRCs don't match. You should repair the disk!
  APM: not present
  GPT: damaged

Found invalid MBR and corrupt GPT. What do you want to do? (Using the
GPT MAY permit recovery of GPT data.)
 1 - GPT
 2 - Create blank GPT

Your answer:

我不想意外擦除資料:)所以最好確定要嘗試哪些選項。

答案1

所以,我正在回答我自己的問題!可能對某人有用。

我透過 SATA 在內部連接磁碟,工作正常。看來問題是找到一個可以與此類磁碟一起使用的合適外殼。

感謝大家的幫忙。

答案2

您將需要了解如何在此磁碟上建立分割區和檔案系統。您可以透過以下方法來做到這一點:

cat /proc/partitions

如果您沒有看到任何 sdc 分割區,則 ext3 可能位於整個磁碟上。

嘗試安裝它。

sudo mkdir /mnt/data
sudo mount /dev/sdc /mnt/data

如果失敗,請嘗試使用 /dev/sdc1 等分割區。

相關內容