• 1 Post
  • 104 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle







  • Yeah, but it isn’t noticeably “less stable” if at all anymore* unless you mean stable as in “essentially in maintenance mode”, and clearly good enough for SLES to make it the default. Stop spreading outdated FUD and make backups regularly if you care about your documents (ext4 won’t save you from disk failure either which is probably the more likely scenario).

    * not talking about the RAID 5/6 modes, but those are explicitly marked unstable







  • The same argument can be made for any OS. Same packages, same hardware, same configuration, and probably it would be the same.

    Only if we’re talking about 1:1 disk image clones or installing stuff on a fresh system.

    https://nixos.org/

    That is clearly talking about build-time dependencies and the build process given the context (maybe the word “work” here is misleading though, also because some packages don’t even have parts that can “work” or “not work” like wallpaper packages). It is impossible to automatically ensure all runtime dependencies are met, because that would require analyzing what the program actually does. I can write you any number of Nix packages that will only run on my computer (simplest case is because they load a file from a path from my user directory or something), but the thing that Nix ensures is that you can reproduce the package contents on your system as well.

    That said, in a lot of cases, nixpkgs does actually (manually) patch runtime dependencies to use store paths which sets up that dependency relation, but with KDE PIM stuff this would lead to dependency cycles if done the typical way, for example KMail depends on Akonadi to build, but Akonadi loads plugin files from KMail when it is installed. This is not something you can do, so to resolve that cycle, you need another package which depends on both and links them together so they can see each other at runtime. Right now the entire NixOS configuration (or rather, whatever the environment.systemPackages option affects) assumes the role of this third package, but it would be nice if was done in in a more self-contained way, so that you could also reasonably use this stuff outside of NixOS.


  • Not at all, given we’re running probably significantly different configurations. With the same configuration we’d get the same results, and NixOS never claimed to eliminate what is essentially packaging bugs related to runtime dependencies. KDE stuff (and especially anything Akonadi-related) right now needs a lot of plugin path environment variable mess to work with NixOS’s file structure because it loads a bunch of stuff at runtime from other packages, which can break in strange ways like this if you don’t add a specific package to your system packages for example, it’s definitely not ideal the way it is right now but it’s also pretty hard to get right.




  • Not really sure what would be your type of game but here’s some that I’ve played that I found addicting, from various genres. All of these are on Steam and I’ve played on Linux.

    Definitely look at Portal 2. Great game that’s easy to get into.

    If you played and liked Portal 2, also take a look at Portal, The Talos Principle, and Q.U.B.E. (I probably can’t go wrong recommending puzzle games)

    Maybe also Mirror’s Edge (2008).

    Baldur’s Gate 3 is one I’ve put a lot of time into recently.

    Chill exploration game that I couldn’t put down and am still obsessed with: INFRA

    If you think you could like base builder games: RimWorld, Factorio, Satisfactory

    And then some absolute PC classics: Half-Life (1998, or you can also play the remake Black Mesa), System Shock (play the 2023 remake), Vampire: The Masquerade - Bloodlines.



  • Thank you, but I will probably stay with samba at the moment which will probably fullfil my current needs and seems more complex than I thought !

    Then, take a look at ksmbd which is basically a mini SMB implementation in the kernel. I haven’t used it yet, but apparently it’s more performant and easier to set up.

    If you don’t mind… Can you tell very briefly what kerberos actually solves in a coporate environnement ? Please, give me a sneek peak of the subject that awaits me :) !!

    It provides single sign-on capability. As I already said Active Directory is built on Kerberos for authentication, but it’s used similarly on Linux, logging in to Kerberos gives you a TGT (ticket-granting ticket) which essentially allows you to also authenticate to other services like NFS, SSH (in which case it can forward your ticket to the machine you log on to), stuff like IMAP, even websites (though as far as I’ve seen you need to do some stupid per-domain manual setup for at least Firefox) without having to enter your password again, at least, until the ticket expires, or storing it anywhere. There’s much more that supports it but I’ve only used it for NFS and I’ve experimented with using it for SSH auth, and only for personal use, so I can’t tell you what exactly.

    It’s worth noting that it’s purely for authentication and not authorization, so if you want central permission management, something else will have to do that, such as LDAP which is also what AD uses.