Bug 154283 - System hangs on startup after kde update
Summary: System hangs on startup after kde update
Status: RESOLVED DUPLICATE of bug 153560
Alias: None
Product: SUSE LINUX 10.0
Classification: openSUSE
Component: Other (show other bugs)
Version: unspecified
Hardware: i686 SuSE Linux 10.0
: P5 - None : Major
Target Milestone: ---
Assignee: E-mail List
QA Contact: E-mail List
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-01 07:58 UTC by Per Newgro
Modified: 2006-03-01 10:30 UTC (History)
0 users

See Also:
Found By: Other
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Per Newgro 2006-03-01 07:58:37 UTC
After updating latest kde with apt and reboot of system in runlevel 5, the system is hanging. Starting in runlevel 3 is working, so investigation was possible. Without earlykdm script runlevel 5 is working.

Found solution while googling: The preload statements in script have to contain a "<".

replace
if test "$1" = "start" && test -x /sbin/preload; then
   if test -z "$DISPLAYMANAGER_AUTOLOGIN"; then
      /sbin/preload /etc/preload.d/kdm
   else
      /usr/bin/ionice -n2 /sbin/preload /etc/preload.d/kdm.auto
      /usr/bin/ionice -n6 /sbin/preload /etc/preload.d/kde &
      echo $! > /var/run/preload-session.pid
   fi
fi

by
if test "$1" = "start" && test -x /sbin/preload; then
   if test -z "$DISPLAYMANAGER_AUTOLOGIN"; then
      /sbin/preload < /etc/preload.d/kdm
   else
      /usr/bin/ionice -n2 /sbin/preload < /etc/preload.d/kdm.auto
      /usr/bin/ionice -n6 /sbin/preload < /etc/preload.d/kde &
      echo $! > /var/run/preload-session.pid
   fi
fi
Comment 1 Stephan Kulow 2006-03-01 10:30:37 UTC

*** This bug has been marked as a duplicate of 153560 ***