You are not logged in.
Pages: 1
Why is it that when i hit the home key it just makes a cap H when it should go to the beginning of the line.. Doesnt do that in slackware..
Offline
I had that in rxvt, normal console worked fine though. Try changing the TERM variable to something else, e.g. "export TERM=rxvt".
Offline
where would i do this...
Offline
o and this is in kde console..
Offline
i also had this issue and i did some searching. either setting the $TERM variable to "xterm-xfree86" or "rxvt" should work, by rights. however, i'm just a bit uncertain as to where the arch initscripts set the TERM variable to begin with (or if they set it at all). i just put this line in my /etc/profile
export TERM="xterm-xfree86"
i also edited the following line:
if [ "$TERM" = "xterm" -o "$TERM" = "xterm-color" -o "$TERM" = "rxvt" ]; then
PROMPT_COMMAND='echo -ne "33]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}07"'
fi
to read
if [ "$TERM" = "xterm-xfree86" -o "$TERM" = "xterm" -o "$TERM" = "xterm-color" -o "$TERM" = "rxvt" ]; then
PROMPT_COMMAND='echo -ne "33]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}07"'
fi
it works, although i want to make sure that it's cool. feedback?
-\ fideli /-
Offline
The export thing worked.. Thanks..
Offline
Hello.. Back from the dead lol.. Anyways i left linux a while ago.. I am back though.. Well i had tried this which it worked when i did it originally.. Now when i do it i get some really screwed up ps1 and every time i hit enter after typing a command in console (not in a gui terminal like xterm) i get a beeping sound.. So anyone have an idea?
Offline
when you're in console, you should export TERM=linux.
I think.
Dusty
Offline
kinda on topic, but I can never rememeber how to change it... why does my home key return "~" in aterm.... I don't want my home dir, I want the beginning of the line...
Offline
To make my ALT key work properly on xterm i changed this in my .Xresources
XTerm*metaSendsEscape: true
Offline
Pages: 1