dd then resize the fs?
Edit: one caveat here I forgot: if your fstab is using UUIDs, you’re going to have to update that, since the new drive won’t be the same UUID because, well, it’s not the same drive.
dd then resize the fs?
Edit: one caveat here I forgot: if your fstab is using UUIDs, you’re going to have to update that, since the new drive won’t be the same UUID because, well, it’s not the same drive.
Also, if you like htop, youre going to love btop.
Yeah DNS is, in general, just goofy and weird and a lot of the interactions I wouldn’t expect someone who’s done it for years to necessarily know.
And besides, the round-robin thing is my favorite weird DNS fact so any excuse to share it is great.
Uh, don’t do that if you expect your mail to be delivered.
Multiple PTRs, depending on how the DNS service is set up, may be returned in round-robin fashion, and if you return a PTR that doesn’t match what your HELO claims you are, then congrats on your mail being likely tossed in the trash.
Pick the most accurate name (that is, match your HELO domain), and only set one PTR.
(Useless fact of the day: multiple A records behave the same way and you can use that as a poverty-spec version of a load balancer.)
sudo smartctl -a /dev/yourssd
You’re looking for the Media_Wearout_Indicator which is a percentage starting at 100% and going to 0%, with 0% being no more spare sectors available and thus “failed”. A very important note here, though, is that a 0% drive isn’t going to always result in data loss.
Unless you have the shittiest SSD I’ve ever heard of or seen, it’ll almost certainly just go read-only and all your data will be there, you just won’t be able to write more data to the drive.
Also you’ll probably be interested in the Total_LBAs_Written variable, which is (usually) going to be converted to gigabytes and will tell you how much data has been written to the drive.
As a FunFact™, you’re more likely to have the SSD controller die than the flash wear out at this point.
Even really cheap SSDs will do hundreds and hundreds of TB written these days, and on a normal consumer workload we’re talking years and years and years and years of expected lifespan.
Even the cheap SSDs in my home server have been fine: they’re pushing 5 years on this specific build, and about 200 TBW on the drives and they’re still claiming 90% life left.
At that rate, I’ll be dead well before those drives fail, lol.
It’s usable-ish, but still kinda crashy and prone to occasionally imploding.
I wouldn’t really use it as my sole daily driver, but for certain people doing certain things, it’s probably fine.
(It needs another year, honestly.)
Well, I know what I’m doing this weekend.
Private APIs that “trusted sites” have access to that can make all sorts of browser-level changes?
So many questions:
Why in the hell? No, seriously what big-brain was involved in the idea that some site needs that level of access to my browser?
Who didn’t see this coming? I mean if you make basically a secret back door, of COURSE your shit’s getting pwnt as soon as someone else notices it.
Also note to self: don’t install Opera I guess.
Maybe?
It depends on if the added functions are software-based, or if there’s some hardware funkery going on.
Given it’s a consumer product, I’d wager it’s just a drive in an enclosure that does all their mirroring/backups/encryption stuff in software, but their marketing material doesn’t seem to say one way or the other.
Google indicates older versions can be reformatted, so I’d bet that’s still true.
If I’m wrong it’s not my fault, etc.
Hey, if you can do it on a 4004…
(Yes yes, you’d have to write an x86 emulator and it’d be slow as heck but I mean, you could.)
the hybrid route of “Yea you can play as long as you want, but as soon as you give us money you will be required to give us money forever to play” route is counter productive
100%.
There’s a couple of games I would probably be playing and spending money on that follow that monetization method and the problem is that… I don’t play one game endlessly.
If you cancel and go away, you’ve made returning to the game a pretty substantial hurdle, and for me at least, I’m just… not going to.
(Also FFXIV’s utterly incomprehensible login system that requires six logins on five thousand different pages under nine names doesn’t help since every time I try to come back I can’t remember how to even log in to anything.)
I have both my TOTP and my Passwords in the same program
What’re you using for this?
I’m using Bitwarden in a similar configuration but given they’re being funky about their definition of ‘open source’, I’m maybe looking for an alternate.
I’m shocked I didn’t get downvoted to shit myself.
It’s just that it was VERY clearly either sanctions or a NSL, since the Linux Foundation is in the US and the two things that result in a public entity like that making silent, un-explained changes are, well, sanctions and NSLs and you don’t say shit because your lawyer told you not to.
I don’t necessarily agree that tossing contributors off an open-source project is in the spirit of the OFAC list, but the problem almost certainly is that they’re employed by some giant tech company in Russia.
And, in Russia, like in the US, and Israel, and China, and anywhere else you care to mention, tech companies are almost always involved in military supply chains, since shit don’t work without computers at this point.
Which leads to a cycle of being unable to work with Weapons, Inc. and someone works for Weapons, Inc. so now that person can’t be worked with either and so your choices are… comply with the OFAC list, or take a stupid amount of legal risk up to and including angry people with guns showing up to talk to you.
We really don’t know the whole story and immediately jumping to “Imperialists bad!” is how certain chunks of Lemmy roll these days.
I think they’d be much happier if they all moved to North Korea and helped achieve the goal of Juche by becoming dirt farmers.
If it was Chris Roberts, it’d just be a JPEG of a dinosaur and a promise that the mount is in the pipeline for early pre-production to be added to the next major quarterly alpha release once it’s ready.
Also it’d be $499.
Which is exactly what anyone who wasn’t wanting to just snort some concentrated outrage knew was the case.
And you can argue as to if OFAC list should apply to things like this or not, but the problem is that the enforcement options for OFAC violations include ‘stomp you into the ground until you’re powder’, most people are just going to comply.
The announcement video they had a while ago made this look fun, AND it lasts for more than the week they usually do.
…I should probably buy the new expansion or something at some point but man, $50 for a video game.
refuse to go into caves in Skyrim
Well there’s giant spiders in those caves, so he’s got the right idea.
(I do not like spiders, I do not like giant spiders, I do not like giant surprise spiders the most.)
two commands: dd and resize2fs, assuming you’re using ext4 and not something more exotic.
one makes a block-level copy of one device to another like so: dd if=/dev/source-drive of=/dev/destination-drive
the other is used to resize the filesystem from whatever size it was, to whatever size you tell it (or the whole disk; I’d have to go read a manpage since it’s been a bit)
the dd is completely safe, but the resize2fs command can break things, but you’d still have the data on the original drive, so you could always start over if it does - i’d unplug the source drive before you start doing any expansion stuff.