• 2 Posts
  • 29 Comments
Joined 2 years ago
cake
Cake day: August 15th, 2023

help-circle




  • 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.












  • Why hasn’t the market dropped yet with all the fuckery going on in DC? Because the impact of said fuckery has not occurred yet.

    This is s completely incorrect take on the stock market.

    Rule #1 of the stock market is that none understands how it responds to inputs.

    Rule #2 is that it attempts to factor in future expectations, so if you wait for something to happen, the impact is already accounted for in the price if the stock.

    Market frenzy, people piling on when FOMO takes over, etc all make it impossible to have any level of certainty. So it’s a valid question to ask why all of the current fuckery has not translated into market chaos.





  • 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 ))