📄 readme
字号:
1. Missing capability in the linux terminfo entry.You should check if your linux terminfo description has `csr'defined; do this with "infocmp linux | grep csr". If not, dothe following:# infocmp linux > linux# vi linux [ add the line "csr=\E[%i%p1%d;%p2%dr," ]# tic linux2. Using the real ANSI or IBM-PC graphic characters.If you install this terminfo entry you can use the options"-l -tmc" to let minicom use the IBM-PC character set onthe linux console.You can do this by entering (as root):# tic minicomSome terminals, such as most consoles on Unixes that run on IBMcompatible PC's, can display special line drawing characters.If these characters map 1-to-1 to the IBM character set, you can justuse the '-l' (literal) flag when invoking minicom. If yourterminal cannot display the IBM characters directly, you should addthe 'as', 'ae' and 'ac' entries to your termcap or terminfo.The Linux console only maps 1-to-1 in a special mode. Therefore you need tomake a special terminfo entry that initializes theconsole on startup. For an example see the file minicom.This defines a terminfo entry called "mc".To use this information instead of the normal 'console' information,minicom has to be invoked with the '-t mc' option (meaning use TERM=mcinstead of the normal TERM environment variable).And, in my /etc/profile I have added the lines: case "$TERM" in con*|linux) MINICOM="-l -m -con -tmc" ; export MINICOM ;; esacSo when I log in on the console I can use minicom in full color,full ANSI mode.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -