• 3 Posts
  • 275 Comments
Joined 2 years ago
cake
Cake day: June 16th, 2023

help-circle


  • Not OP, but:

    • Not indexable (can’t use web search engines on its content, not even forums);
    • Like Deep Rock Galactic, Discord is full of cave-dwelling creatures that abduct miners;
    • The built-in search feature (the only way you can search things on it, mind you) has less filters than my uncle at thanksgiving;
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • Can’t mute the entire server because you want notifications for mentions on a few specific channels;
    • Said server creates a new channel;
    • @everyone
    • @everyone
    • @everyone
    • @everyone
    • Can’t use browser bookmarks to manage and enter servers, you have to use THIS fucking thing
      • but they have to pay for uptime somehow
        confirmshaming, plus they got the monopoly on this type of social services by undercutting their competition through venture capital so they could go under tomorrow for all I care
    • Irrelevant for most people, but the garbage uncollapsible UI makes it painful to make it share screenspace with other windows on a FHD screen (which is a tragedy for tiling WM users);
    • The markdown implementation is a bit janky IME
    • By reading the first 9 words of this notice you accept that you may not sue us and have to arbitrate your disputes
    • Third-party clients are against TOS, as you noted below

  • Windows 10 and 11 really dislike HDDs, that’s probably why you can’t admit to using HDDs online without getting stones thrown at you (I’ve been there before).

    I’ve disabled paging files (= swap) for one of my Windows VMs, unfortunately - to my surprise - that only had a small performance boost, and I still need to let the VM chug for a few mintes before it even lets me open File Explorer.

    … but it does improve performance, definitely consider doing it if you don’t need swap/paging/whatever they call it now.



  • It’s not about the amount of swap space, it’s a problem that happens when swapping happens for big chunks of data at a time.

    Windows aggressively swaps out things way before it’s necessary, you can try increasing the system’s “swappiness”; I’m writing this from my phone, but when I get to my PC I’ll write out how to do it (unless somebody else does it before I do).

    You can set it by writing vm.swappiness=60 in a file like /etc/sysctl.d/50-swappiness.conf.
    The value 60 is arbitrary, if you increase it the system will try to swap out things more aggressively; the name of the file is also partially arbitrary, but AFAIK, it has to begin with two digits — the system will read all the files inside /etc/sysctl.d in order, and the settings in higher-numbered files will be applied over lower ones.

    Officially, this is the explaination of the vm.swappiness parameter.
    You can read and write the value with your shell:

    #!/usr/bin/bash
    sysctl vm.swappiness  # shows you the current value
    sudo sysctl vm.swappiness=69  # sets the swappiness to 69 AND shows you the new value
    













  • I’d rather take two SATAs, I have a cheap docking station with two SATA slots (currently housing hard disks) and putting them together on a RAID0 almost doubles a single one’s performance.

    I could buy a docking station with two NVMe slots, it would be wise too, but then again, two NVMe SSDs would be faster than one, and again, it may or may not be worth the slight (potential) increase in price and decrease in reliability - especially considering the diminishing returns.


  • I can confirm that fully moving Windows from a HDD to an SSD makes all the difference in the world; for some reason, W10 and especially W11 are astoundingly slow on hard disks.

    I have a W11 VM, and if I run it on a SATA SSD it boots up in ~30s; HDD, the same image on a HDD takes approximately 5 minutes to get to the login screen, then no less than 2 minutes to run applications.
    Even considering that I disabled paging files.