on kubuntu 20lts
sudo sh -c ' echo "ALL ALL=(NOPASSWD: /usr/bin/kill" >> /etc/sudoers'
I have some machines with Kubuntu 20.04 LTS, everyday when the machines start, and the users login, smb4k mounts shares. But sometimes some shares dont mount because mounthelper hangs up. I need to allow all users to execute the kill command in a bash script to remote them All the shares.
But it doesn't work... -bash: kill: (1709) - operation not permitted The process is owned by root What I'm doing wrong?
killcommand. Can you be more specific and give some examples of the actual problems you are experiencing? – Nmath Jun 10 '21 at 17:10killis located in/bin/killnot/usr/bin/kill. Giving anyone possibility to kill any process is from security reasons a bad idea. Maybe allow only specific users or group. – Mateusz Jun 10 '21 at 17:40/binis symlinked tousr/binso that is as expected. – vanadium Jun 10 '21 at 18:10/binand/usr/bin– Mateusz Jun 10 '21 at 19:19killin a terminal, you're likely getting your shell's builtinkillcommand, rather than an external executable/bin/killor/usr/bin/kill. When you runsudo killyou will get the external command. – steeldriver Jun 11 '21 at 01:01