• 3 Posts
  • 56 Comments
Joined 3 years ago
cake
Cake day: July 1st, 2023

help-circle

  • Idk most teams I’ve worked with have either known better than to deploy anything at EOD or on a friday, or make heavy use of feature flags so any change that caused an issue just got swiftly rolled back. The ones that didn’t, I made it ABUNDANTLY clear that I won’t be available outside of work hours.

    Maybe I haven’t been around the block enough or maybe I got lucky…



  • If you ever try dual booting again, just wanted to say it works much better if you have linux and windows on separate drives because windows gets to do whatever it wants on its own bootloader while linux handles everything else including switching to windows. Familiar with acer nitro laptops myself and 1050ti with i7 I assume means it’s the older model with the hdd bay you can get to without disassembling. Should be simple enough to plop a 500GB SATA SSD in there for windows if you don’t have one already.

    P.S. be very careful with the hinges on that laptop bc it ain’t fun when they break







  • Most of these are great but I wanna point out some of the ones I don’t agree with

    • I’ve found that the elbow grease bit is gonna be a dealbreaker for 90% of Windows users even when they hate windows. I hate it but that’s the truth
    • Nvidia is much better than it used to be but it’s still a PITA unless you use a gaming distro or one that comes with proprietary drivers preinstalled and properly configured (even for someone already very comfortable with linux). This is important if you want Wayland to work correctly or need optimus on laptops. Furthermore, and this is laptop-specific, KDE Plasma is gonna have low FPS on secondary monitors or drain tf out of your battery by defaulting to dedicated graphics if your config is wrong (and it’s wrong by default on laptops)
    • Switching desktop environments is a massive PITA so choosing the one you like first time is important.


  • Ah, that’s completely understandable. Most people don’t realize that in a lot of companies, even if you are involved, the decision to make the stupid feature/break your workflow comes from a suit 10 pay grades above your level and despite everyone involved trying to explain that it’s a bad idea.

    Also it’s a big fucking company haha






  • Huh, this was definitely a fix I used on an older version that I just moved over to a new install with the new drivers so the drm modset line may not be necessary anymore yeah. I’ll check next time I connect to my monitor.

    And yeah, it’s def gonna get better. I’ve already seen both wayland and nvidia improve significantly over the last 2-3 years so at this rate, things should “just work” pretty soon (insert meme about year of the Linux desktop).

    I vividly remember struggling to get proprietary drivers working on Fedora 37 (or 38, it’s been a minute) only to have them break on the next version on my previous laptop. It was definitely much MUCH easier to install on Fedora 42 on my current one and updates haven’t broken anything for me since 40.



  • This is graat info. Didn’t know about Ventoy before, it sounds really cool.

    Just wanted to add that if you’re running multiple monitors on an nvidia card, you may find that the second monitor has low fps/stutters on wayland (common on dual graphics laptops). The fix is as follows:

    Add these 3 lines to /etc/modprobe.d/nvidia.conf:

    options nvidia-drm modeset=1
    options nvidia NVreg_UsePageAttributeTable=1 NVreg_InitializeSystemMemoryAllocations=0 NVreg_EnableGpuFirmware=0
    

    Add this line to /etc/environment:

    KWIN_DRM_DEVICES="/dev/dri/by-path/pci-0000\:01\:00.0-card:/dev/dri/by-path/pci-0000\:00\:02.0-card"
    

    You may have to modify the part that says pci-xxxx\:xx\:xx.x-card with the appropriate values for your graphics card.

    Run lspci | egrep VGA to list installed PCI graphics cards and try to map the values from there

    Disclaimer: I don’t know why this works but it does and it isn’t malicious as far as I can tell. If anyone knows what exactly it’s doing, I’d like to know please.