Aussie living in the San Francisco Bay Area.
Coding since 1998.
.NET Foundation member. C# fan
https://d.sb/
Mastodon: @[email protected]

  • 0 Posts
  • 59 Comments
Joined 2 years ago
cake
Cake day: June 14th, 2023

help-circle


  • some malfunction in systems around the world only supporting max 9 digits

    That’s not how computers work, though. They use binary so they care more about binary digits (powers of two: 1, 2, 4, 8, 16, 32, etc) rather than decimal digits (powers of 10: 1, 10, 100, 1000, 10000, etc).

    Very old systems store numbers with a fixed number of digits, but those systems don’t use Unix time.


  • KDE still has some of the most popular effects built-in, including wobbly windows, desktop cube, magic lamp when minimizing/maximizing, blurring semitransparent windows, “exploding” windows when you close them. They’re built in with no extra software required - just go to the “Desktop Effects” settings.


  • you immediately tie the permanent accessibility of your local files to you retaining access to a cloud account?

    The Microsoft account holds a backup of the recovery key, which you need to use to restore access in if you do something like significantly change the hardware or move the drive to a different system (which are effectively the same thing).

    You don’t need it for day-to-day use of the system, and you can also just get the recovery key and print it out or write it down somewhere, which is usually how it’s handled on systems that don’t use a Microsoft account.

    Say, Veracrypt is churning away in the background. Why would one leave Bitlocker activated?

    That’s a good point.

    You have different opinions on TPM and the prevalence of evil maids than me, fair

    I work at a big tech company so have to be vigilant even with my personal systems :)


  • dan@upvote.autolinuxmemes@lemmy.worldMicrosoft secured my files!
    link
    fedilink
    arrow-up
    8
    arrow-down
    1
    ·
    edit-2
    2 months ago

    the premise of the thread

    Some of the things mentioned in the OP don’t actually happen in real life, though. Bitlocker is only automatically activated if you use a Microsoft account to log in, and why wouldn’t you know the account credentials if it’s what you use to log in?

    doesn’t rely on TPM and secureboot silliness

    TPM is optional (but recommended) for Bitlocker. Practically every computer released in the past 10 years has TPM support.

    Secure boot is needed to ensure that the boot is secure and thus it’s okay to load the encryption key. Without it, a rootkit could be injected that steals the encryption key.

    You generally want to use TPM and secure boot on Linux too, not just on Windows. You need secure boot to prevent an “evil maid attack”




  • dan@upvote.autolinuxmemes@lemmy.worldMicrosoft secured my files!
    link
    fedilink
    arrow-up
    10
    arrow-down
    1
    ·
    edit-2
    2 months ago

    It sounds like you’re complaining about both approaches.

    If Microsoft doesn’t have the key: You can’t recover your files if you lose it.

    If Microsoft does have the key: An attacker could get in and take it (unlikely if you have two factor auth though) and you need to trust Microsoft.

    And Micosoft stores that key in plain text.

    How do you know this, though? It could be encrypted using your account password as a key or seed.









  • apt and apt-get both use dpkg internally, but these days it’s essentially seen as an implementation detail that regular users don’t need to know about.

    dpkg doesn’t resolve dependencies (that’s a feature of apt) which means that if you install a Debian package with dpkg, you’ll have to manually install all dependencies first, and they won’t be marked as automatically installed (so autoremove won’t remove them if they’re not needed any more). Using apt solves that.

    The web suggests dpkg because either the articles are old, or they’re based on outdated knowledge :)


  • dan@upvote.autolinuxmemes@lemmy.worldPosting for a friend lol
    link
    fedilink
    arrow-up
    293
    arrow-down
    1
    ·
    edit-2
    2 months ago

    These days, apt is for humans whereas apt-get is for scripts. apt’s output is designed for humans and may change between releases, whereas apt-get is guaranteed to remain consistent to avoid breaking scripts.

    apt combines several commands together. For example, you can use it to install packages from both repos and local files (e.g. apt install ./foo.deb) whereas apt-get is only for packages from repos and you’d need to use dpkg for local packages.