--- syntax: markdown tags: [tldr, linux] source: https://github.com/tldr-pages/tldr.git --- # loginctl > Manage the systemd login manager. > More information: . - Print all current sessions: `loginctl list-sessions` - Print all properties of a specific session: `loginctl show-session {{session_id}} --all` - Print all properties of a specific user: `loginctl show-user {{username}}` - Print a specific property of a user: `loginctl show-user {{username}} --property={{property_name}}` - Execute a `loginctl` operation on a remote host: `loginctl list-users -H {{hostname}}` - Log a user out on all of their sessions: `loginctl terminate-user {{username}}`