Ok... So we are at A1.18 and I'm still having issues with my user
accounts ~/.bashrc not being sourced.
First effect of this is not being able to run gui apps when you su to root.
I'm trying to add multi language support, and I noticed I'm setting up
my variables correctly in ~/.bashrc, but the dang t hing doesn't get
sources, so no effect whats so ever.
I did an ugly quick hack to get this going for me ATM.
in /etc/profile, at the very end of the file, there is an if
statement, so I added a line there to make it look like this
if [ ! "`id -u`" = "0" ]; then
PATH="$PATH:."
. /home/$USER/.bashrc
fi
That fixes the issue for me, and gives me interationalization support
because the regional variables are set in ~/.bashrc
Can you guys figure out how to fix this or use this fix for it or
whatever... I just need it working
|