• 0 Posts
  • 37 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle

  • Not the person above, but if it is an issue you ever run into you are doing it “wrong”. Not really, but let me explain.

    Having it on a separate partition has a few advantages like different mount flags (e.g. noexec), easier backup management (especially snapshots) and some other benefits like using your home for a new installation (like OP wants to) or it prevents some critical failures in case you accidentally fill it up (e.g. partial writes or services cannot start).

    I often cannot decide on specific mount sizes either, because requirements may change depending on what you do. Hence I would just stick with some reasonable defaults for the installation and use some form of volume manager instead. If you want to use ext4, xfs etc I would recommend using LVM as it gives you a lot of freedom (resizing of volumes, snapshots and adding additional drives, mixed RAID modes etc) or there are btrfs, zfs or bcachefs to name the most common file systems which implement their own idea of storage pools and volumes.

    Never should you need to resize a partition, there are more modern approaches. Create a single partition (+ a small EFI partition somewhere) and never bother with partitions ever again. The (performance) overhead is negligible and it gives so many additional benefits I didn’t even mention. Your complaint is a solved problem.



  • According to a ProtonDB user the specific crashes I am referring to have been finally fixed with 545.29.02. So two weeks ago for a 5 years old card. Good job Nvidia!

    I would have loved having that earlier, because I threw mine out after all the frustration with Nvidia and I still doubt that it is fully working now.

    Don’t get me wrong it’s great for others stuck with Nvidia hardware though. I would never ever recommend buying any Nvidia hardware for Linux though. The experience is miserable compared to AMD.














  • Yea, no. It doesn’t work with ssh agent and it cannot read includes and other configuration options. I believe it also tries to install some components remotely which is bad enough, but causes additional issues in environments with proxies or without internet access at all. Iirc also plugins must be installed remotely to work.

    In a normal professional context it just does not work and it is a hassle to deal with. It might work in a home lab, but nowhere beyond that.


  • In general it is safe to install as many DEs as you want. There is some overlap between (user) configuration files though which might be annoying.

    It should be fine to experiment, but you might need to restore some settings afterwards. For daily use I would just stick to one DE. Personally I don’t think there is really a reason to use multiple DEs as a single user. It would throw me off and mess with my workflow.

    Also keep in mind that many DE also provide a set of default tools which add clutter. So you probably want to keep it low for this reason alone.



  • I would put shell scripting basics higher up on the list as part of the introduction to cli, because that’s one of the major benefits over using a gui.

    Otherwise it looks really good, maybe sprinkle some vi(m) in there, because it is the defacto default editor outside of Ubuntu and few others.

    Also maybe focus more on iptools2 over the legacy commands like ifconfig, netstat etc as they are not available everywhere anymore (use ip or ss instead). It is still very useful to know both though.

    Finally you should pay close attention to anti patterns like “sudo su”, “ps aux | grep …”, “cat … | grep …” etc and make sure to teach proper usage of the tools. I have seen it way too often done wrong in beginner guides.