• 4 Posts
  • 295 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle


  • Dad of 4 kids here, I would say use the system that let you concentrate more on the kid and less on tinkering the OS.

    Dad of 3 here with 20something years on Linux already. This is the correct answer. Just go for win11 if that’s the simplest route for you, Linux will be there once you have the capacity to learn it. With a new baby you’ll be exhausted, you have a crapload (sometimes quite literally) new things to learn already and you just won’t have the time to do all the things you used to (as you already know). Making things more challenging for you by switching to something completely new just eats the very little time you have for yourself.

    My work laptop has 11 running on it and it’s good enough. OS on that thing is not my call anyways, but at least on my workload it gets the job done.



  • And setting permissions on directories get’s them inherited by newly created/added files in there, right?

    No. They’re created based on ‘umask’ and changing directory permissions doesn’t automatically change permissions on underlying files (unless you set privileges recursively) nor new files in the directory.

    So how can i remove the ability from my homedir to execute current and new files but keep the traverse permission?

    For new files set your umask on what you want. By default it’s usually either 0002 or 0022. For existing files you can use find: find ~ -type f -exec echo chmod a-x {} \; (remove echo once you’ve confirmed that it does what you want).


  • big begginer distros

    I wouldn’t say that Mint is a ‘beginner’ distro. Sure, it’s beginner friendly, but it’s equally friendly for everyone. I’ve been a linux user for “a while” and currently I prefer Mint on my workstations. It offers me everything I need from a distro in a neat package and as I’ve been a Debian user since Potato it’s a familiar environment.

    But if OP want’s somehting “more linux-y” then good old Debian should do the trick. Basically anything with decently long history besides Ubuntu (in it’s current state) will do just fine.


  • Obviously we’re talking about hobbyist level stuff and with that there’s always something what can go wrong and it’s not always obvious what it is. So if the ‘remote end’ doesn’t have someone who can do at least very basic troubleshooting it can be nearly impossible to fix the setup over the phone unless you just replace the whole thing and ship whole units back and forth.

    But in this particular case the remote end has someone who knows their stuff so it’s taken care of, with or without a KVM. I’ve been thinking a similar setup with my relatives and on my case the distance isn’t an issue but it’s still something I’d need to bother family members with and, for me, it was simpler to get a storage box from hetzner and run backups to that instead of getting more hardware.

    Maintenance is anyways something you need to consider and viable options for that vary on a case-by-case basis, so there’s no ‘one size fits all’ solution.



  • I would consider also the case where something goes wrong. Maybe the whole thing crashes, maybe you misconfigure something, maybe there’s a power outage or something else happens and you lose the connectivity. Is there someone on site who can do anything to your hardware as you can’t easily just go and figure it out by yourself?

    If the answer is ‘no’ then I would strongy reconsider the whole approach. On a worst case scenario the system goes down before you’re even back home from the trip and then your hardware is just gathering dust.


  • I think what just_another_person means that Lenovo, specially at the beginning when they got the Think-brand from IBM years ago, tried to ride the brand and released sub-par laptops under ThinkPad -brand. At least some of the L-series were closer to what you could get from your local supermarket than actual work machines.

    The brand-riding is now greatly less and the crappy ones generally aren’t the models you can find refurbished from 3rd party retailer. I’m currently using T495 and it was ~300€ from a sale couple years ago, now you apparently can get L13 for less than that. And of course, when you buy used units do your homework and only make deal with a reputable seller, there’s always an option that previous owner didn’t treat the thing nicely.



  • I somewhat agree on your comment about documentation and UI (altough once you get used to it, it’s manageable) but just to add with my experience on these things: for me they’ve been rock solid. I’ve used them both at home and professionally (mostly on small-ish networks) for at least 10 years and they just seem to run just fine.

    Currently my home router is RB4011iGS+ and there’s been absolutely no problems with it in the 4-5 years it’s been on my network. I’m not saying all their models are as reliable and there’s not that many models I’ve had my hands on, but my experience with them has so far been pretty good.


  • You’ll get used to it eventually

    I’ve been earning my living mostly with connecting to remote systems via ssh (and other means) for quite a few years and I still occasionally mess up and enter commands on a wrong terminal. Less now than I used to, but it still happens. The trick is to learn youself to pause for a second and confirm the target for any potentially destructive or otherwise harmful command, no matter if it’s locally or to some server other side of the world.


  • Are all the distros having the same GNU/Linux kernel

    Yes. Different distros have different versions, patches and so on, but the underlying kernel is the same.

    if I replace all the Arch userland files into Debian’s, the system will become Debian?

    If by “userland” you mean files which your normal non-root user can touch, then no. There’s differences on how distributions build directory trees, file locations, binaries, versions and so on. You can of course replace all the files on the system and change distribution that way, a convenient way to do that is to use distros installer but technically speaking you can also replace them manually by hand (which I don’t recommend).



  • Do they really care enough to check your info manually if you don’t use your domain name for malicious purposes?

    Depends on TLD how strict the checks are, but generally you’re at least violating TOS by doing it and can lose your domain should someone actually check the info. A lot of registrars provide at least whois-security, so they’ll know your real details but won’t share them openly to anyone who asks. I assume if you get into something illegal and court orders to release the data then they’ll happily comply instead of hurting their own business.

    But if you just want to keep your real name and address out of the internet, that would be enough at least for me.



  • I did self-host bitwarden and it’s not that bad to keep updated and running after initial setup (including backups obviously) but it still requires some time and effort to keep it running. And as I was the only user for the service it just wasn’t worth the time spent for me (YMMV) so I switched to their EU servers and I’ve been a happy user ever since.

    What I should do is to improve local backps on that, currently I just export my data every now and then manually to a secured storage, but doing it manually means that there’s often too long time between exports.