|
Bugzilla – Full Text Bug Listing |
| Summary: | System hangs on startup after kde update | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE LINUX 10.0 | Reporter: | Per Newgro <per.newgro> |
| Component: | Other | Assignee: | E-mail List <kde-maintainers> |
| Status: | RESOLVED DUPLICATE | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Major | ||
| Priority: | P5 - None | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | i686 | ||
| OS: | SuSE Linux 10.0 | ||
| Whiteboard: | |||
| Found By: | Other | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
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