Announcement

Collapse
No announcement yet.

Can't bring up kdesu konqueror

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Can't bring up kdesu konqueror

    When I try bring up kdesu konqueror, I get the follow result: sudo: /etc/sudoers is mode 0666, should be 0440. Anyone know how to fix this? Thanks.

    #2
    Re: Can't bring up kdesu konqueror

    Boot into recovery mode so you will have a root prompt and try
    Code:
    chmod -R 0440 /etc
    Klaatu Barada Nikto

    Comment


      #3
      Re: Can't bring up kdesu konqueror

      Originally posted by 67GTA
      Boot into recovery mode so you will have a root prompt and try
      Code:
      chmod -R 0440 /etc
      Err...you definitely do not want to recursively change the permissions of the whole /etc to 0440 (that is -r--r-----)...it will break the system.

      change only the permission for the sudoers file:
      Code:
      chmod 0440 /etc/sudoers
      Of course if you have edited permissions of the system directories and files (why is /etc/sudoers in mode 0666?) you may run into more issues down the road.

      Comment

      Working...
      X