• 42 Posts
  • 1.07K Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle




  • I want to use Glim too, because the binary Blobs in Ventoy are bugging me a lot. But Glim is a bit limited still: README

    My experience has been that the safest filesystem to use is FAT32 (surprisingly!), though it will mean that ISO images greater than 4GB won’t be supported. Other filesystems supported by GRUB2 also work, such as ext3/ext4, NTFS and exFAT, but the boot of the distributions must also support it, which isn’t the case for many with NTFS (Ubuntu does, Fedora doesn’t) and exFAT (Ubuntu doesn’t, Fedora does). So FAT32 stays the safe bet.


  • thingsiplay@beehaw.orgtoLinux@lemmy.mlBalenca vs Ventoy?
    link
    fedilink
    arrow-up
    9
    arrow-down
    1
    ·
    20 hours ago

    Those are two completely different programs. balencaEtcher is for flashing an ISO to the USB stick. Basically its like installing an operating system on your hard drive, but it installs it on the USB drive. It will make it bootable. If you want a different OS, you have to completely flash the drive and replace whats there.

    Ventoy will also make the USB stick bootable, but it will not flash an operating system onto it. It’s more like a general launcher of ISO files. This means, you only install Ventoy once and then can drag and drop ISO files to a folder. If you boot Ventoy from USB stick, it will show a list of all available ISO files. Choose one and it boots into the distribution, like you would have flashed it with balencaEtcher.

    The advantage of Ventoy is clear: Easy replaceable ISO files and having many to choose from withing a single installation. Filenames of ISOs doesn’t matter and they can be placed in sub directories in the ISO folder I think. Ventoy will just list all available ISOs you can choose and boot into. The disadvantage is, that some distributions or hardware might not work well with Ventoy, but that’s not my experience so far.



  • Because of idiots like them, either not understanding what woke means, or by taking it to comical extreme, real issues get buried under. I wouldn’t be surprised if this list was created by an Ai or was meant to be funny in the first place. I would say some stuff there has nothing to do with wokeness at all, such as gay relationships is too woke for them. I go this far and say whoever made that list seems to be anti-gay.

    And that’s my take, going too extreme is always bad and destroys any nuances and makes real problems hard to find and discuss.



  • Salty developers who got blocked on Twitter, lol. First, who cares what opinion some person has on Twitter. It doesn’t affect or is related to Godot. Without context or being involved, i have to assume the community manager had reason to block those people who got annoying. You guys make problems out of nothing. Also how serious can we take it, if this is documented on knowyourmeme and are events happened on Twitter? About Wokeness of games?

    The fork of Godot won’t change anything of this subject. It only supports toxicity towards the developers and splits the community for no reason. Your fork won’t solve the problem that you got blocked in Twitter.




  • I’m not Nintendo supporter and play Switch games on emulators. But one justification is, that this is current generation system. And while the developers are not responsible for, this enables easy piracy, and basically each first party game got leaked early and was playable before or shortly after launch. So lot of these people connect the wrong dots and say that the emulator “supports” piracy, which is not true, but depending on the view could be interpreted by some haters.

    The Ryujinx isn’t illegal and I am pro emulation (I have terabytes of Roms for all kind of systems) and Open Source. The above statement is not MY justification, but what I think is what most Nintendo supporters will say. I talk about this subject with my bro, watch YouTube videos and read forum comments and that is what I get from them.



  • If I do ps aux | grep root, then the newline is preserved. So I’m not sure what exactly the problem is. There is a user option for ps, but it does not work with aux, ps --user root . You can ps ax --user root, but I’m not sure if this output is what you want.

    Btw if you grep, then I recommend using ^user , so it only matches the beginning of each line (the actual username), as ps aux | \grep ^root (notice the backslash). Do you have an alias for grep? Try \grep instead. The backslash in front of the command will use the actual command and ignore your alias.