• 5 Posts
  • 56 Comments
Joined 3 years ago
cake
Cake day: August 15th, 2023

help-circle



  • Yeah, several years back I had a pair of the Sony earbuds that I bought refurbished off of eBay. A firmware update borked the battery in one of the buds and Sony was replacing them free of charge, but since mine weren’t bought new and weren’t from an actual store, they told me to screw off, so I did and haven’t been back. Before Sony ruined them they were really nice buds, but I’m not trusting them with my money anymore since they have proven a willingness to unilaterally decommission their devices.













  • I use Mint on a Surface tablet with detachable keyboard. When I detach the keyboard no virtual one appears automatically, which I prefer. If I need a keyboard there is a quick menubar icon that brings one up. I cant remember if it loaded itself there by default or if I went into settings to make the virtual keyboard icon always in the status bar, but that’s how I manage it.






  • hdparm wouldn’t let me run the security-erase or security-erase-enhanced commands. It was indicating an IO failure. I thought maybe that was due to me not giving the drive a file system so I went back to Disks and gave it one, but still no luck. When I give it a file system the drive mounts though, so no actual hardware issues that I can see.

    I found a thread on another site about using dd to remove the last 1-10MB of a RAID disk in order to make their RAID appliance see the drives as unconfigured. That’s basically what I’m trying to do here so I followed those instructions but this Mediasonic bay is still not coming to life with the old drives. I might be at the point of sending it back and looking for something else.

    Just for completeness, the command used to wipe the end of the drive is as follows where you specify the amount to wipe using the “mb” variable and you change /dev/sdX to the correct drive. From a thread on Stack Exchange.

    disk=/dev/sdX && mb=10 && dd if=/dev/zero of=$disk bs=512 count=$(( 2048 * $mb )) seek=$(( $(blockdev --getsz $disk) - 2048 * $mb ))