>From yesterday I have this problem too. In /etc/init.d/x11-common is this:
SOCKET_DIR=/tmp/.X11-unix
...
set_up_socket_dir () {
  if [ "$VERBOSE" != no ]; then
    log_begin_msg "Setting up X server socket directory $SOCKET_DIR..."
  fi
  if [ -e $SOCKET_DIR ] && [ ! -d $SOCKET_DIR ]; then
    mv $SOCKET_DIR $SOCKET_DIR.$$
  fi
  mkdir -p $SOCKET_DIR
  chown root:root $SOCKET_DIR
  chmod 1777 $SOCKET_DIR
  do_restorecon $SOCKET_DIR
  [ "$VERBOSE" != no ] && log_end_msg 0 || return 0
}
but everytime when I reboot my notebook, the directory is created with mode 
3777, sudo chmod 1777 /tmp/.X11-unix didn't change anything. But sudo chmod -s 
/tmp/.X11-unix successfuly changed the mode to 1777

-- 
The "suspicious" errors don't give sufficient information
https://bugs.launchpad.net/bugs/622179
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

_______________________________________________
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to     : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp

Reply via email to