Now on a i915 video driver machine i had an issue that will prevent slim to start, i changed the
/etc/init.d/slim

This part commented out a line and add others,


#commented lines
# start-stop-daemon --start --quiet $SSD_START_ARGS || echo -n " already running"
#== added lines
if [ "$(pidof slim)" ]; then
  echo -n " already running"
else
  exec /usr/bin/slim
fi
#==


Hope it's helpful to someone else, i had so many issues with slim, so i changed to lightdm and with the correct configuration it works great.


Cheers!

Reply via email to