MEU disco rígido de 500GB estava funcionando bem até algumas reinicializações atrás.
lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 232.9G 0 disk
├─sda1 8:1 0 225G 0 part /
├─sda2 8:2 0 1K 0 part
└─sda5 8:5 0 8G 0 part [SWAP]
sdb 8:16 0 465.8G 0 disk
└─sdb1 8:17 0 465.8G 0 part /media/usr/HDD1
sdc 8:32 0 465.8G 0 disk
└─sdc1 8:33 0 465.8G 0 part
sdd 8:48 0 1.8T 0 disk
└─sdd1 8:49 0 1.8T 0 part /media/usr/My Passport
sde 8:64 0 465.8G 0 disk
└─sde1 8:65 0 465.8G 0 part /media/usr/extHDD
sr0 11:0 1 1024M 0 rom
sdc1 é o que eu quero.
No entanto, tentando montá-lo com
sudo mount -t /dev/sdc1 /media/usr/HDD2
dá
mount: can't find /media/usr/HDD2 in /etc/fstab
então eu corro
blkid /dev/sdc1
que produz
/dev/sdc1: PARTUUID="0000814a-01"
sudo fdisk -l também não fornece mais informações
Disk /dev/sdc: 465.8 GiB, 500107862016 bytes, 976773168 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
Disklabel type: dos
Disk identifier: 0x0000814a
Device Boot Start End Sectors Size Id Type
/dev/sdc1 63 976771119 976771057 465.8G 83 Linux
Mas é definitivamente reconhecido pelo sistema (link para screenshot)
Então estou perdido.
edite 1:
ls /media/usr
HDD2 HDD1 My Passport extHDD
então
sudo nano /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name #devices
#that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=da459b4f-512c-4fb6-926e-cdf082a9e2b6 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=f9f8c1e3-3cbf-4979-b76a-c7af70186c9f none swap sw 0 0
editar 2
sudo fsck /dev/sdc1
fsck from util-linux 2.26.2
e2fsck 1.42.12 (29-Aug-2014)
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck.ext2: Bad magic number in super-block while trying to open /dev/sdc1
The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem. If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 8193 <device>
or
e2fsck -b 32768 <device>