Trên centos 7, có những trường hợp bạn nhận được lỗi Không thể rõ cụ thể lỗi này có thông báo như sau: Unable to register authentication agent: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine user of subject
Error registering authentication agent:
GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine user of subject (polkit-error-quark, 0)
Điều này thường xảy ra khi cố gắng sử dụng lệnh một dịch vụ trên hệ thống.
Cách giải quyết như sau:
groupadd -g 23 nohidproc usermod -a -G nohidproc polkitd mount -o remount,rw,hidepid=2,gid=nohidproc /proc systemctl restart polkit
Thêm những điều sau đây vào /etc/fstab
echo "proc /proc proc defaults,hidepid=2,gid=nohidproc 0 0" >> /etc/fstab
Sau khi gắn kết điểm gắn mới
mount -a systemctl restart polkit