Kbase P33180: Getting error 627 when starting a session
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  6/9/2009 |
|
Status: Verified
SYMPTOM(s):
Getting error 627 when starting a session
** You cannot use INTR for both DEL and CTRL-C. (627)
FACT(s) (Environment):
UNIX
Progress 9.x
CAUSE:
There are two keys mapped for the interrupt character. Ony one mapped for interrupt is allowed.
FIX:
To correct the problem interactively (this will last only as long as your session) type:
stty intr '^c' <CR>
stty erase <BS><CR>
NOTE: the above strings are entered in one character at a time (eg.^ then c, not ctrl-c. After 'erase' is typed in, you should press the space bar then press the BACKSPACE key. This will assign the escape sequence from the BS key to do the erase function. <CR> indicates a carriage return.
To make this change active for each login, first you need to find out what escape sequence is being returned from the BACKSPACE key. To do this, type:
vi <CR>
i
CTRL-V
BACKSPACE
The escape sequence for the backspace key will be displayed. For
this example we will assume it is ^?. ESCAPE :q will exit from vi.
Enter the following two lines in your .profile file to make the
key assignments permanent:
stty intr '^c'
stty erase '^?'