22

The primary OS for this disk was Unraid. Its formated in BTRFS. I don't think either of those matter. The disk spins and worked before the reboot. But now. No matter what machine, port or cable I use its not mountable. Is there anything I can try? I was going to attempt Spinrite on it however it doesn't see anything either. Thanks! Its a HGST drive dated May2019

top 10 comments
sorted by: hot top controversial new old
[-] tal@lemmy.today 17 points 1 week ago* (last edited 1 week ago)

If you have a Linux machine, look in /sys/class/block and see if it shows up there. That'll give you a list of devices at the block device level. There should be an entry there, regardless of what you've done with partitioning or filesystems on those partitions.

If it doesn't show up there, the drive is probably having trouble at a hardware level. There are various tactics that people have tried to get a rotational drive functioning, like different temperatures, having the drive in different orientations, etc. Those might work, but if the drive is having physical problems, it might also continue to degrade.

If that's the case, your best bet, if the information is sufficiently worthwhile to you, is probably to send the drive to a data recovery company. What they'll do is use a drive with the same hardware, and in a clean room, swap the platters, and as long as it's still functional, they can image the drive at that point. IIRC you're talking something in the neighborhood of $500, though I've never needed to do this myself (backups!).

If it does show up, then you can look at whether you're getting kernel log errors when attempting to read from the drive (journalctl -k -b). If so, it might be recoverable, at least in part.

If there aren't any errors, then whatever your issue is might only be in terms of the data on the drive. My first step -- knowing nothing about how Unraid sets things up -- would probably be to look at the partition table on the drive (sudo parted <drive-device-name>). You can manually mount a partition with (mount <partition-name> <mount-point>).

EDIT: Oh, one last note. You might try swapping the cable before throwing in the towel, if you haven't already. While I doubt that this is it, and I don't think I've ever had a problem with a hard drive, a few times in my life, I've run into puzzling problems where a device isn't visible that came down to a faulty data cable. Can't hurt to try, at any rate.

[-] vegetaaaaaaa@lemmy.world 2 points 1 week ago

lsblk also show block devices and is prettier than looking directly at /sys/class/block

[-] themachine@lemmy.world 7 points 1 week ago

What exactly do you mean by "not mountable"?

[-] calmluck9349@infosec.pub 4 points 1 week ago

I attempted to mount the disk and it says "unable to mount".

I think there might need to be more than one cylinder. (Referring to photo) Hmm...

[-] calmluck9349@infosec.pub 3 points 1 week ago

This is the error from my laptop when I try and mount. It asked for the encryption password just before this. And makes all the normal annoying hard drive sounds.

[-] calmluck9349@infosec.pub 2 points 1 week ago

Here are some more screenshot of the disk. Maybe its a BTRFS failure?

[-] tal@lemmy.today 13 points 1 week ago* (last edited 1 week ago)

Okay, it looks like you posted this prior to me posting my comment above. I'm not familiar with this graphical utility, but I'm assuming that it means that your disk is visible (like, if you run ls /dev/sda, you see your disk).

So what you've probably got is a functioning hard drive, with a functioning partition table, and on the first partition (/dev/sda1), a LUKS layer.

I haven't used LUKS, but it's a block-level encryption layer for Linux. It'll have some command to expose an unencrypted layer, and you can mount that.

Let's try walking through this in a terminal.

From https://superuser.com/questions/1702871/how-to-do-cryptsetup-luksopen-and-mount-in-a-single-command, it looks like the way this works is that one runs:

$ sudo cryptsetup luksOpen <encrypted-device-name> <unencrypted-block-device-name>

Your encrypted partition name is presently at /dev/sda1. So try running:

$ sudo cryptsetup luksOpen /dev/sda1 my-unencrypted

That should prompt you for a password. If it can decrypt it, it looks like it creates a block device at /dev/mapper/my-unencrypted.

You can then create a directory to use as a mountpoint:

 $ sudo mkdir -p /mnt/my-mount-point

And try mounting it (assuming that it's just a filesystem):

$ sudo mount /dev/mapper/my-unencrypted /mnt/my-mount-point
[-] calmluck9349@infosec.pub 1 points 1 week ago
[-] tal@lemmy.today 1 points 1 week ago

considers

I think that mount the mount(1) command is probably calling the mount(2) system call, and it's returning ENOENT, error 2. The mount(2) man page says "ENOENT A pathname was empty or had a nonexistent component.".

Hmm. So, I expect from the cyan color there that that "luks-d8..." thing is a symlink that points at some device file that LUKS creates when that luksOpen command runs.

Maybe ls -l /dev/mapper/luks-d8... and see what it points at and whether that exists as a first step? It's probably gonna be some device file somewhere in /dev.

[-] catloaf@lemm.ee 2 points 1 week ago

So does the actual block device show up as recognized?

this post was submitted on 07 May 2024
22 points (89.3% liked)

Selfhosted

36985 readers
233 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 11 months ago
MODERATORS