Hard disk troubleshooting

I follow this guide https://developers.google.com/compute/docs/troubleshooting#ssherrors , namely the section on recovering your permanent drive using another vm.

I am trying to follow this part:

mount / dev / disk / by-id / scsi-0Google_PersistentDisk_myinstance-debugging / mnt / myinstance

This is the error I get:

root @ debugger : ~ # mount / dev / disk / by-id / scsi-0Google_PersistentDisk_marty-wll-debugging / mnt / marty-wll
mount: you must specify the filesystem type

I am not sure about the file system due to the use of computer computing you are using, and the system has already been removed and attached to another machine according to the Google Developer's Guide, which I referred to above.

parted scsi-0Google_PersistentDisk_marty-wll-debugging -l
root @ debugger : / dev / disk / by-id # parted scsi-0Google_PersistentDisk_marty-wll-debugging -l
Model: Google PersistentDisk (scsi)
Disk / dev / sda: 10.7GB
Sector size (logical / physical): 512B / 4096B
Partition Table: msdos

Number Start End Size Type File system Flags
 1 1049kB 10.7GB 10.7GB primary ext4


Model: Google PersistentDisk (scsi)
Disk / dev / sdb: 10.7GB
Sector size (logical / physical): 512B / 4096B
Partition Table: msdos

Number Start End Size Type File system Flags
 1 1049kB 10.7GB 10.7GB primary ext4

gave me information that its "ext4".

although when I issue the following command, I still get the error message:

root @ debugger : ~ # mount -t ext4 / dev / disk / by-id / scsi-0Google_PersistentDisk_marty-wll-debugging / mnt / marty-wll
mount: wrong fs type, bad option, bad superblock on / dev / sdb,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

dmesg syslog :

[ 2452.205447] EXT4-fs (sdb): VFS: Can't find ext4 filesystem

?

+3
1

, , . -part1 . , . :

mount /dev/disk/by-id/scsi-0Google_PersistentDisk_myinstance-debugging-part1 /mnt/myinstance

, , :

mount /dev/disk/by-id/google-myinstance-debugging-part1 /mnt/myinstance
+7

All Articles