Skip Navigation

Posts
14
Comments
152
Joined
2 yr. ago

  • Step brother, help me compile the kernel please!

  • The program that asks for password graphically is polkit. As far as I've searched online it only supports bypassing password prompts if you're admin on the system. It does not have a password less prompt like in Windows. I'm using this and this as source in case you want to disable it all together. I'm not a mint user my self so I cannot validate this without spinning up virtual machine. I would recommend the community just look at whatever I wrote for 24h and mention some issues that might occur. I'll update it if someone points out any issues.

    Open any terminal (sorry) and copy one line at a time into the terminal and hit enter. After the first line you'll be asked to enter the password. For the consecutive commands password will not be asked. On the last command you'll open a graphical text editor and make sure certain text is present.

     sh
        
    sudo su
    mkdir -p /etc/polkit-1/rules.d/
    cd /etc/polkit-1/rules.d/
    touch 49-nopasswd_global.rules
    xdg-open 49-nopasswd_global.rules
    
    
      

    You should now see a text editor appear with a file opened. Copy this and paste it in the file at the bottom. Then save, close and reboot.

     
        
    /*
     *  https://lemmy.world/comment/1396602
     *  Allow members of the wheel group to execute any actions
     * without password authentication, similar to "sudo NOPASSWD:"
     */
    polkit.addRule(function(action, subject) {
        if (subject.isInGroup("wheel")) {
            return polkit.Result.YES;
        }
    });
    
    
      

    This is a security risk as you might understand, but it's your computer and you can do whatever you want. If you have any issues just post them here and maybe we'll figure something out.

  • I wonder why you cannot just clone the bits to a usb flash drive. Is there some sort of check that the operating system has not been moved to some other hardware in there?

    1. Fully unmanaged and automatic updates.
    2. Online account: automatic e2e backups and restores. Can be a payed or a selfhosted service.
    3. Does not require root account. Locked root account.
    4. Flatpak and Android apps works out of the box

    Call it Grandma Linux™ if you want. It needs to be a deploy and forget distro. I'm not recommending Linux right now unless they're developers.

  • I was copying passwords and usernames all the time. This comment made me realize I didn't configure it properly

  • please do, the FOSS community need open source porn alternative

  • Install sddm, disable gdm, reboot.

  • i disagree with the color of the text. too much contrast. may I suggest it being dark blue?