• 0 Posts
  • 26 Comments
Joined 1 year ago
cake
Cake day: February 9th, 2025

help-circle







  • Does it actually list the packages that are suggested?

    If a package is recommended, it gets installed by default. They’re not strictly necessary for the core functionality of the main package, but they are commonly used by many users.

    On the other hand, suggested packages are like plugins. They won’t necessarily be important to most users, but some might find them handy. Things like alternate backends for specific use cases, or a plugin to enable a specific (and rarely used) service.

    I haven’t used apt in a while, but I don’t think there’s a way to automatically install all suggested packages. I think you just install them manually by copying and pasting the package names, and running additional apt install commands.

    But unless you know what specific usage you need before I probably wouldn’t bother.






  • Personally, I dual boot with an external NVMe drive. It works great! I have Linux and only Linux on the internal drive and Windows gets relegated to an external one.

    The trick to getting it to work is: you have to temporarily install the NVMe drive internally in order to install Windows onto it. Then you pop it into an external enclosure and it just works. Just make sure your BIOS is set up to boot USB devices before internal drives.


  • OpenSUSE Tumbleweed has a GUI for almost everything. It has a nice GUI for basic system config, and uses YaST2 for deeper settings, and it uses Discover for Flatpaks as well as system library updates.

    Although, I have seen a couple people say Discover shouldn’t be used for doing system updates because it can fail, and to only use it for Flatpak updates and installs. I dunno. But it’s not like typing sudo zypper dup to do a distro upgrade is hard, so I just do that out of an abundance of caution.

    OpenSUSE has some other cool features too, like having Snapper installed by default for system snapshots. It’s pretty easy to roll back if an upgrade goes sideways. There’s a boot entry that lets you open a previous snapshot as read-only and then you can make that snapshot permanent by creating a new top-level snapshot from it. So then you can at least use your computer while you try to figure out why the upgrade you did failed.

    You’ll probably want to use KDE as your desktop environment. It’ll be somewhat familiar if you’re use to Windows, and it has a lot of features that make it comfortable to use.

    There are lots of good YouTube videos on why OpenSUSE is pretty cool. Check some out.




  • I can’t tell you how many times I’ve accidentally pasted random private stuff from that goddamn middle click into WEB PAGES! Things that can read whatever text you type without having to explicitly submit anything. It’s a horrible thing for a new user to discover by accident. It’s such an unexpected feature to new users, and no one gets told about it, ever. You simply discover it by accident.

    This is a good change, not having it on by default.

    To all the haters of this idea, god forbid we make Linux less weird by default for people migrating from Windows.

    All that said, I have learned to love select-to-copy and middle-click paste. Especially in the terminal.



  • Yes, every distro requires a password for sudo. That’s the whole point of it. But editing .bashrc does not require sudo. You can add aliases and functions to .bashrc. A malicious script can append to .bashrc, and by doing so, it can alias sudo to be whatever command it wants. For instance, a malicious function. So the next time you run sudo it runs the malicious command, instead, which itself can act just like sudo and prompt you for your password. So now you just entered your password into a malicious function. Do you see the problem with this?