Hi Ben,

I downloaded and applied the patches that were
provided in that link but I still get the message when
I launch the console.  

patch /etc/bashrc etc-bashrc.patch
patch /etc/profile etc-profile.patch.

Did I miss something.  Below is a dump of both files
as they exist now.


more /etc/bashrc

# /etc/bashrc

# System wide functions and aliases
# Environment stuff goes in /etc/profile

# by default, we want this to get set.
# Even for non-interactive, non-login shells.
if [ `id -gn` = `id -un` -a `id -u` -gt 99 ]; then
        umask 002
else
        umask 022
fi

# are we an interactive shell?
if [ "$PS1" ]; then
    case $TERM in
        xterm*)
            PROMPT_COMMAND='echo -ne
"\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
            ;;
        *)
            ;;
    esac
    [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$
"

    if [ -z "$loginsh" ]; then # We're not a login
shell
        for i in /etc/profile.d/*.sh; do
            if [ -x $i ]; then
                . $i
            fi
        done
    fi
fi

unset loginsh


more /etc/profile

# /etc/profile -*- Mode: shell-script -*-
# (c) MandrakeSoft, Chmouel Boudjnah
<[EMAIL PROTECTED]>

# Since we're invocated as a login shell set loginsh
# so that we can avoid sourcing some files twice.
loginsh=1

# Users generally won't see annoyng core files
[ "$UID" = "0" ] && ulimit -S -c 1000000 > /dev/null
2>&1

if ! echo ${PATH} |grep -q /usr/X11R6/bin ; then
    PATH="$PATH:/usr/X11R6/bin"
fi

if [ "$UID" -ge 500 ] && ! echo ${PATH} |grep -q
/usr/games ; then
    export PATH=$PATH:/usr/games
fi

umask 022

USER=`id -un`
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"
HISTCONTROL=ignoredups
HOSTNAME=`/bin/hostname`
HISTSIZE=1000

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
    INPUTRC=/etc/inputrc
fi

# some old programs still use it (eg: "man"), and it
is also
# required for level1 compliance for LI18NUX2000
NLSPATH=/usr/share/locale/%l/%N

export PATH PS1 USER LOGNAME MAIL HOSTNAME INPUTRC
NLSPATH
export HISTCONTROL HISTSIZE

for i in /etc/profile.d/*.sh ; do
        if [ -x $i ]; then
                . $i
        fi
done

unset i




On Tue, Jun 25, 2002 at 11:04:35PM -0700, J S wrote:
> One other thing, when I launch a console I am seeing
> bash: TMOUT: readonly variable
> where is this variable or is there a package that
has
> a fix so I don't see this everytime I launch a
> console?

Fix is here:
http://marc.theaimsgroup.com/?l=mandrake-cooker&m=101589690710622&w=2

For some reason while there is an update to the setup
package for 8.2
out to fix this it never made it into cooker.  Warly
would you please
include my fix for this in the cooker setup package.

Let's not ship this bug in yet another version of
Mandrake.



__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

Reply via email to