I take my shitposts very seriously.

  • 7 Posts
  • 593 Comments
Joined 2 years ago
cake
Cake day: June 24th, 2023

help-circle

  • rtxn@lemmy.worldtoLinux Gaming@lemmy.worlddont do this.
    link
    fedilink
    English
    arrow-up
    3
    ·
    9 hours ago

    The option doesn’t have a value. You just need to specify that the option should be present, e.g. defaults,noatime,windows_names,uid=1000,gid=1000 in fstab, or mount.ntfs -o noatime,windows_names,uid=1000,gid=1000 for manual mounts.

    This comment on the UDisks github page elaborates on why the ntfs-3g driver does not automatically restrict the usable characters.

    UDisks itself does mount NTFS volumes with the windows_names option, and the last comment in the same thread explains why enforcing that restriction with no way to opt out is a breaking change for some users.


  • rtxn@lemmy.worldtoLinux Gaming@lemmy.worlddont do this.
    link
    fedilink
    English
    arrow-up
    24
    ·
    12 hours ago

    uid=1000,gid=1000,dmask=022,fmask=133

    You can very easily fuck up your NTFS filesystem and make it unmountable in Windows. Would anyone be surprised to learn that not even Windows is fully compliant with the NTFS specifications? Some characters, like :, are valid for NTFS filenames, but illegal in Windows, and if you create such a file (e.g. in a wineprefix’s dosdevices), Windows will refuse to mount it. Ask me how I know.

    The solution is to specify the windows_names option every time you mount the filesystem, both in fstab and when using mount.ntfs.





  • You can host the open-source ID and Relay servers for simple remote access at no cost. The pro subscription is mainly about account and device management.

    compose.yaml
    services:
      hbbs:
        container_name: hbbs
        image: rustdesk/rustdesk-server:latest
        command: hbbs
        volumes:
          - ./data:/root
        network_mode: "host"
        depends_on:
          - hbbr
        restart: always
    
      hbbr:
        container_name: hbbr
        image: rustdesk/rustdesk-server:latest
        command: hbbr
        volumes:
          - ./data:/root
        network_mode: "host"
        restart: always
    



  • You can, technically, but there are some caveats.

    SteamOS is not a general purpose OS. It is optimized to run on the Steam Deck (plus the Frame and Gabecube I guess). Its software components are tested on a limited range of hardware (specifically AMD silicon), and it might not have certain optimizations and compatibility fixes that are required by other consumer hardware. It also probably has some proprietary bits, especially the firmware.

    The best option is Bazzite. It’s not based on SteamOS, but it is built with a robust gaming experience in focus. You can even get it to boot directly into Steam Big Picture. Watch this loud Aussie man do it!

    The other option is HoloISO, which is an independent reimplementation of SteamOS. Their intention is to get as close to the real SteamOS as possible. Hardware support is limited (especially nvidia).






  • Absolutely! Multiple, in fact. In order of preference:

    1. Shut down the game, dissolve the company, and donate all remaining funds to a women’s shelter.
    2. Prosecute groomers instead of banning and threatening the people who are trying to stop the fuckers and crying about vigilantism even when the proper reporting channels are used.
    3. Use AI for a beneficial purpose at least one goddamn time. Scan the text and voice communications (it’s a public game, there is no expectation of privacy), flag suspicious exchanges for human review, then ban and report groomers.



  • That is still so fucking mysterious to me. The Chinese Room makes exactly one type of game, which is “guided-interactive narrative experience” to be diplomatic. The exact opposite of Bloodlines 1. Dear Esther, Ozzy Mandus And The Crankhog Machine, their entire portfolio follows the same formula: strong in art direction, atmosphere, and story; weak in gameplay. Even a hit like Still Wakes The Deep only takes gameplay as far as “throw object to make the thing look away”. Their gameplay systems are not just middling but comfortably average, just enough to keep the player engaged while moving through the (admittedly beautiful) environments.

    So why the fuck did Paradox choose them for Bloodlines 2? Are they stupid?



  • rtxn@lemmy.worldtoSelfhosted@lemmy.worldOwn domain for Jellyfin and privacy concerns
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    1
    ·
    edit-2
    10 days ago

    It’s possible that, when the ISP revokes the public address and assigns a new one, the DNS record isn’t updated immediately and still points to the old address. Then every new request would be sent to the old, invalid address.

    And this is where I start shilling for Tailscale. It’s a Wireguard-based mesh VPN that is designed to work from behind firewalls, NAT, and CGNAT. It has its own internal split DNS provider, and probably some mechanism to handle public address changes that is transparent to the tunnelled traffic. You can use it to share the server with only the devices that have the client installed, or expose the server to the internet.

    I’ve got it set up on my OPNSense firewall as a subnet router that advertises the subnet where my servers are, and often stream from Jellyfin over it. There’s some overhead, but it’s never been disruptive.