• 11 Posts
  • 29 Comments
Joined 2 years ago
cake
Cake day: December 28th, 2023

help-circle




  • Yeah this is the way. Debian stable has outdated packages, debian testing has broken packages. Ubuntu is difficult for beginners because of snap. Linux mint is the perfect just-works debian-based beginner distro. Same for DE: Gnome is hard to use, KDE is bloated and unstable, and XFCE is too minimalist/diy/quirky for beginner users (you need to add a panel applet in order for the volume keys to work? Huh??). Cinnamon is the perfect middle ground between resource usage and features.

    Make sure during installation that you create a 4 GB swap partition too

    Or at least as large as your RAM if you want to be able to hibernate.








  • renzev@lemmy.worldtoMemes@lemmy.mlRednote right now
    link
    fedilink
    arrow-up
    8
    ·
    edit-2
    1 year ago

    some people can’t handle that most humans just wanna be friends regardless of gov politics bs

    Yes exactly. There are lots of internet weirdos trying to spread culture war nonsense, but if you actually go outside every once in a while, you realize that most people just aren’t like that. I work in a restaurant that has a lot of ukrainian and russian visitors (migrants). At one point, a large group of russians came in for a birthday party, and they asked the owner to put on a playlist of russian music. Like, really cheesy russian pop. After some time, a girl from a smaller table of ukrainians calls me over and complains about the music. I relay it to the owner, and he asks them what they would rather listen to instead. They tell him, and he adds their songs on the queue. The rest of the evening was spent playing and dancing to russian and ukrainian and armenian songs (the owner is armenian, and there were some armenian guests too) and the atmosphere was just generally very chill. Not a single fuck was given about politics that evening.


  • renzev@lemmy.worldtoLinux@lemmy.mlGRUB is confusing
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    If GRUB is too confusing, just uninstall it? You said you have a UEFI system, you don’t need a bootloader. You can just put the vmlinuz and initramfs onto the ESP and boot into it directly. You can use efibootmgr to create the boot entry, something like this:

    efibootmgr \
    	--create \
    	--disk /dev/sda \
    	--part 1 \
    	--index 0 \
    	--label "Void linux" \
    	--loader /vmlinuz-6.6.52_1 \
    	--unicode " \
    		root=PARTLABEL=VOID_ROOT \
    		rw \
    		initrd=\\initramfs-6.6.52_1.img \
    		loglevel=4 \
    		net.ifnames=0 \
    		biosdevname=0 \
    		nowatchdog \
    		iomem=relaxed \
    		"
    
    • --disk /dev/sda: What disk is the esp on?
    • --part 1 What partition number (counting from 1) is the esp on?
    • --index 0 At what index in the boot menu should the boot entry appear?
    • --loader Path to the vmlinuz file. These are normally in /boot, you have to move it to the esp yourself
    • root=PARTLABEL=VOID_ROOT this is the linux root partiion. I’m using PARTLABEL to identify mine, but you can use pretty much anything that /etc/fstab supports
    • initrd=\\initramfs-6.6.52_1.img Again, you have to move the initramfs file from /boot into the esp. For some reason this uses backslashes, not forward slashes as path separator (double backslashes in this case are to prevent the shell from interpreting it as an escape sequence)
    • The rest of the arguments are just misc kernel parameters that I use

    Just search for EFISTUB for more info.




  • Teams is such a confusing app. To start off, what is it meant to be? A frontend for onedrive? A chat app? A videocall app? It’s like microsoft’s attemp to make their own everything app. What was wrong with Skype? Actually, Teams shows up as “skypeforlinux” (complete with a Skype icon) in Pavucontrol, so is the videocalling part of teams just a re-packaged skype? Why does the web version of teams have its own integrated Excel which is slightly different from standard web excel? It feels like the UI was specifically designed to mislead. There is a list of icons on the left that allow you to switch between different contexts in the app. The visual design makes it look like a set of radiobuttons, except clicking on some of them twice does a different action… There is a home screen, and then also a second SUPER HOME screen!? I can’t even get angry it at for being a slow bloated jumble of spyware like the rest of microsoft’s garbage (which it is), I just feel a sense of morbid fascination every time I’m forced to use it. It feels like an AI-generated app from a future where AI is much more capable but still utterly fails at understanding humans. It’s the uncanny valley of user experience.









  • renzev@lemmy.worldtoMemes@lemmy.mlasdf
    link
    fedilink
    English
    arrow-up
    1
    ·
    2 years ago

    At first I though this was just a regular shitpost but then I saw the screen tear edit lol

    On a more serious note, is there a way to actually fix screen tearing under x11? I’ve always thought a compositing manager like xcompmgr would do it, but for me it only makes it worse?