this post was submitted on 17 Jul 2023
360 points (100.0% liked)

Linux

47356 readers
1381 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Agility0971@lemmy.world 1 points 1 year ago (1 children)

Can you tell what distro you are using?

[–] Blizzard@lemmy.zip 1 points 1 year ago (1 children)
[–] Agility0971@lemmy.world 5 points 1 year ago* (last edited 1 year ago) (1 children)

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.

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.

[–] Blizzard@lemmy.zip 1 points 1 year ago

Thank you, will try that!