README
上传用户:tianjinjs
上传日期:2007-01-05
资源大小:309k
文件大小:2k
源码类别:

Modem编程

开发平台:

Unix_Linux

  1. 1. Missing capability in the linux terminfo entry.
  2. You should check if your linux terminfo description has `csr'
  3. defined; do this with "infocmp linux | grep csr". If not, do
  4. the following:
  5. # infocmp linux > linux
  6. # vi linux
  7.   [ add the line "csr=E[%i%p1%d;%p2%dr," ]
  8. # tic linux
  9. 2. Using the real ANSI or IBM-PC graphic characters.
  10. If you install this terminfo entry you can use the options
  11. "-l -tmc" to let minicom use the IBM-PC character set on
  12. the linux console.
  13. You can do this by entering (as root):
  14. # tic minicom
  15. Some terminals, such as most consoles on Unixes that run on IBM
  16. compatible PC's, can display special line drawing characters.
  17. If these characters map 1-to-1 to the IBM character set, you can just
  18. use the '-l' (literal) flag when invoking minicom. If your
  19. terminal cannot display the IBM characters directly, you should add
  20. the 'as', 'ae' and 'ac' entries to your termcap or terminfo.
  21. The Linux console only maps 1-to-1 in a special mode. Therefore you need to
  22. make a special terminfo entry that initializes the
  23. console on startup. For an example see the file minicom.
  24. This defines a terminfo entry called "mc".
  25. To use this information instead of the normal 'console' information,
  26. minicom has to be invoked with the '-t mc' option (meaning use TERM=mc
  27. instead of the normal TERM environment variable).
  28. And, in my /etc/profile I have added the lines:
  29.         case "$TERM" in
  30.           con*|linux)
  31.                 MINICOM="-l -m -con -tmc" ; export MINICOM
  32.                 ;;
  33.         esac
  34. So when I log in on the console I can use minicom in full color,
  35. full ANSI mode.