«mount: специальное устройство / dev / sdc1 не существует», но, согласно fdisk -l, оно существует

4508
HolaSnr

Я загружен в живую среду USB Linux и подключен к жесткому диску. Он указан в fdisk -l как / dev / sdc {, 1}, это диск объемом 3 ТБ и имеет один раздел с файловой системой xfs.

Но когда я пытаюсь смонтировать его с

sudo bash mkdir /3 mount /dev/sdc1 /3 

Я получил:

 "mount: special device /dev/sdc1 doesn't exist" 

В чем может быть проблема?

0
Что показывает `ls -l / dev / sdc *`? Keith 10 лет назад 1
Можем ли мы также получить вывод `fdisk -l`? Bobby 10 лет назад 1
Вывод `stat / dev / sdc1` и` blkid / dev / sdc1` также будет полезен. David Foerster 10 лет назад 1

2 ответа на вопрос

1
MariusMatutiae

A 3TB disk cannot have a MBR, because it exceeds the (in-)famous 2TiB limit. It sports instead a GPT, GUID Partition Table. As such, it cannot be inspected and/or handled by utilities of the fdisk family, it must be operated on by gdisk and similar (cgdisk, sgdisk). Also, the live distro you mention but do not specify must have in-built support for EFI-GPT. I suggest you take a look at this excellent introduction article, by the very same guy who wrote gdisk.

-3
user239164

Really its an good question, We can mount the third part/temporary hard drive on any customized folder at our Operating system

But it wouldn't be mount on permanent basis, Because there is lot of issue to know the UUID for temporary hard drive to make its entry in /etc/fstab file

Похожие вопросы