this post was submitted on 11 Aug 2023
24 points (96.2% liked)

Linux

47232 readers
796 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
 

I’m mostly interested in disabling the command to create a root shell ‘machinectl shell @root’. Attempting to ‘systemctl disable systemd-machined’ doesn’t work.

Edit:

After some more poking, it seems polkit is the way to do it. Create the file /etc/polkit-1/rules.d/10-deny-machinectl.rules and add the following

polkit.addRule(function(action, subject) {
   if (action.id.startsWith("org.freedesktop.machine1.")) {
         return polkit.Result.NO;
   }
});

The list of all actions you can filter on are in /usr/share/polkit-1/actions/org.freedesktop.machine1.policy

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 year ago

The worst is that if the ‘wheel’ group is empty, it will give a root shell to absolutely anyone.