Bug 181809
| Summary: | Infinite chain of unicode_start processes crashes system | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Robert Nichols <rnichols42> | ||||
| Component: | kbd | Assignee: | Miloslav Trmač <mitr> | ||||
| Status: | CLOSED DUPLICATE | QA Contact: | |||||
| Severity: | high | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | 5 | ||||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | i686 | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2006-02-16 22:15:57 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
Robert Nichols
2006-02-16 19:10:15 UTC
What version of initscripts are you using? And what is the value of $BASH_ENV? Can you provide the first few files generated by (strace -ff -o log less /etc/profile)? Thanks. Created attachment 124783 [details]
Files from "strace -ff -o log less /etc/profile" (tar archive)
initscripts-8.28-1
BASH_ENV=/root/.bashrc which contains:
# .bashrc
# User specific aliases and functions
#alias rm='rm -i'
#alias cp='cp -i'
#alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
I've found that eliminating the sourcing of /etc/bashrc makes the problem go
away. File /etc/bashrc from initscripts-8.28-1 is unchanged.
OK, this looks like a problem in initscripts, not kbd. File /etc/bashrc sources all the "*.sh" file in /etc/profile.d, and /etc/profile.d/lang.sh causes /etc/bashrc to be sourced again. That's an infinite loop. Yes, and you are not the first one to hit this: #179949, #172059. The correct fix is to remove setting BASH_ENV from all startup files, which unfortunately cannot be done automatically. Thanks for your report. *** This bug has been marked as a duplicate of 172059 *** |