this post was submitted on 17 Jul 2023
350 points (97.0% liked)

Linux

47353 readers
1344 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
[–] [email protected] 6 points 1 year ago (5 children)

I'm a new user. How do I disable being prompted for a password every time I want change/install anything? I just want password requirement at logon and not when logged on.

[–] [email protected] 4 points 1 year ago

Why would you want to disable that? It's there for a very, VERY good security reason.

[–] [email protected] 3 points 1 year ago (1 children)

User Account Control on Windows was no different, other than being a few decades late to the party.

[–] [email protected] 2 points 1 year ago

Kind of, but to be fair UAC doesn't prompt you for the account password unless you're not an Administrator on the PC (in which case you have to enter the password of someone who is). If you're on a single user PC, you'll be an admin and it'll only be a "Yes / No" prompt.

Now macOS on the other hand does require the password, unless you have an Apple Watch (if I heard correctly) in which you can confirm it by pressing a button on it. Or, using the fingerprint reader on the Macs with a TouchID sensor.

[–] [email protected] 1 points 1 year ago (1 children)

You will want to modify the sudoers file. In a terminal sudo nano /etc/sudoers. You will want to go down to the line %wheel ALL=(ALL:ALL) ALL and comment it out by adding # in front of it. A few lines down should be a similar line # %wheel ALL=(ALL:ALL) NOPASSWD: ALL. You will want to uncomment this by deleting the # at the beginning of the line. With nano, you can save by hitting ctrl+O then hitting ENTER to confirm. Hit ctrl+X to exit nano.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

Thanks, I tried that before and I think it only worked until I re-logged (?). I'll try that again, this time will use something else than vi editor to be sure.

[–] [email protected] 1 points 1 year ago

vi is definitely different being a modal editor. If you are new to Linux, I would suggest nano. It is much easier to understand, even if it isnt as fast as vi can be. Many distros have it installed, and pretty much all of them should have it in their repos.

[–] [email protected] 1 points 1 year ago (1 children)

Can you tell what distro you are using?

[–] [email protected] 1 points 1 year ago (1 children)
[–] [email protected] 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.

[–] [email protected] 1 points 1 year ago

Thank you, will try that!

[–] [email protected] 1 points 1 year ago

It depends on your distro but there is a NOPASSWORD option in some that you can add to a sudoers file. Without knowing your system its probably best to use your search engine of choice to look for answers to that but be warned that it is a security risk.